NAME

Lingua::Stem::Snowball::No - Porters stemming algorithm for Norwegian

SYNOPSIS

  use Lingua::Stem::Snowball::No
  my $stemmer = new Lingua::Stem::Snowball::No (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 Norwegian stemming algorithm, which can be found at the Snowball website: http://snowball.sourceforge.net/.

It also supports caching if you pass the use_cache option when constructing a new L:S:S:N object.

EXPORT

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

AUTHOR

Ask Solem Hoel, <ask@unixmonks.net>

SEE ALSO

perl. Lingua::Stem::Snowball. Lingua::Stem. http://snowball.sourceforge.net.