Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
and it gives me this output:my @words = ( 'wordy', 'another' ); my $stemmed_words = Lingua::Stem::En::stem({ -words => \@words, -locale => 'en', -exceptions => \%exceptions, }); print "$stemmed_words\n"; print Dumper( \$stemmed_words );
ARRAY(0x4753160) $VAR1 = \[ 'wordi', 'anoth' ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: dump a string into array
by Anonymous Monk on Sep 23, 2010 at 09:21 UTC | |
by Anonymous Monk on Sep 23, 2010 at 11:52 UTC | |
|
Re: dump a string into array
by Utilitarian (Vicar) on Sep 23, 2010 at 09:24 UTC | |
by Anonymous Monk on Sep 23, 2010 at 11:53 UTC | |
|
Re: dump a string into array
by Khen1950fx (Canon) on Sep 23, 2010 at 12:25 UTC | |
|
Re: dump a string into array
by changma_ha (Sexton) on Sep 23, 2010 at 11:36 UTC |