downer has asked for the wisdom of the Perl Monks concerning the following question:
the print statement just gives ARRAY(0x1864870). same if i try to print in quotes. what am i doing wrong?#$contents = contents of HTML page my $parsed = $scrubber->scrub($contents); my $splitter = new Lingua::EN::Splitter; my @words = $splitter->words($parsed); foreach my $x (@words) { print "$x\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Lingua Splitter
by FunkyMonk (Bishop) on Nov 04, 2007 at 22:01 UTC |