Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Lingua::Stem::Snowball::Da

Name Lingua::Stem::Snowball::Da
Version 1.01
Located at /usr/share/perl5
File /usr/share/perl5/Lingua/Stem/Snowball/Da.pm
Is Core No
Search CPAN for this module Lingua::Stem::Snowball::Da
Documentation Lingua::Stem::Snowball::Da
Module Details Lingua::Stem::Snowball::Da

NAME

Lingua::Stem::Snowball::Da - Porters stemming algorithm for Denmark


SYNOPSIS

  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";
  }


DESCRIPTION

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.

EXPORT

Lingua::Stem::Snowball::Da has nothing to export.


AUTHOR

Dennis Haney <davh@davh.dk>

Ask Solem Hoel, <ask@unixmonks.net> (Swedish version)


SEE ALSO

perl. the Lingua::Stem::Snowball manpage. the Lingua::Stem manpage. http://snowball.tartarus.org.

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026