Porters stemming algorithm for denmark
use Lingua::Stem::Snowball::Da my $stemmer = new Lingua::Stem::Snowball::Da (use_cache => 1);
foreach my $word (@words) { my $stemmed = $stemmer->stem($word); print $stemmed, "\n"; }
The stem function takes a scalar as a parameter and stems the word according to Martin Porters Danish stemming algorithm, which can be found at the Snowball website: <http://snowball.tartarus.org/>.
It also supports caching if you pass the use_cache option when constructing a new L:S:S:D object.
\$1
Lingua::Stem::Snowball::Da has nothing to export.
Dennis Haney <[email protected]>
Ask Solem Hoel, <[email protected]> (Swedish version)
perl. Lingua::Stem::Snowball. Lingua::Stem. <http://snowball.tartarus.org>.