Lingua::Stem::Sv - Stemming algorithm for Swedish
| Use Case | Command | Description |
|---|---|---|
| Stem words | $stems = Lingua::Stem::Sv::stem({ -words => \@words, -locale => 'sv' }) | Stem a list of Swedish words |
| Enable perβrun caching | Lingua::Stem::Sv::stem_caching({ -level => 1 }) | Cache results during a single call |
| Enable indefinite caching | Lingua::Stem::Sv::stem_caching({ -level => 2 }) | Cache until process exit or clear |
| Clear cache | Lingua::Stem::Sv::clear_stem_cache() | Clear the stem cache |
use Lingua::Stem::Sv;
my $stems = Lingua::Stem::Sv::stem({ -words => $word_list_reference,
-locale => 'sv',
-exceptions => $exceptions_hash,
});
This routine applies a stemming algorithm to a passed anon array of Swedish words, returning the stemmed words as an anon array. It is a 'convienence' wrapper for 'Lingua::Stem::Snowball::Se' that provides a standardized interface and caching.
Stems a list of passed words using the rules of Swedish. Returns an anonymous array reference to the stemmed words.
Example:
my $stemmed_words = Lingua::Stem::Sv::stem({ -words => \@words,
-locale => 'sv',
-exceptions => \%exceptions,
});
Sets the level of stem caching.
'0' means 'no caching'. This is the default level.
'1' means 'cache per run'. This caches stemming results during a single call to 'stem'.
'2' means 'cache indefinitely'. This caches stemming results until either the process exits or the 'clear_stem_cache' method is called.
Clears the cache of stemmed words
This code is a wrapper around Lingua::Stem::Snowball::Sv written by Ask Solem Hoel, <ask AT unixmonks.net>
Lingua::Stem Lingua::Stem::Snowball::Sv
Integration in Lingua::Stem by Jerilyn Franz
Jerilyn Franz
(No known bugs)
(No todo items)
Generated by phpman v4.9.27 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-18 05:27 @216.73.216.114
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format