AI-Categorize module

2001-05-28 Thread Moore, Larry
I would like to install and test this module on an NT system but I am not having good luck. Any help would be appreciated. LM

debug problem

2001-07-16 Thread Moore, Larry
I am using perl 5.6.1 with NT. From a dos prompt I said "perl -de 0" expecting to start up the debug invironment but got the following message: default die handler restored Unable to connect to remote host: 127.0.0.1:2000 Compilation failed to require Begin failed - compilation aborted I tri

replacing multiple blank lines with a single blank line

2002-01-31 Thread Moore, Larry
I want to slurp a file and make multiple blank lines into single blank lines. Here is my code: #! perl -w use strict; my $file = "test.fmt"; open (IN, $file) or die; open (OUT, ">>test.txt"); my $text; { local $/; $text = ; close IN; } # $text =~ s/\0{2,}/\0\0/mg; # this removes