1Lingua::Stem::Sv(3) User Contributed Perl Documentation Lingua::Stem::Sv(3)
2
3
4
6 Lingua::Stem::Sv - Stemming algorithm for Swedish
7
9 use Lingua::Stem::Sv;
10 my $stems = Lingua::Stem::Sv::stem({ -words => $word_list_reference,
11 -locale => 'sv',
12 -exceptions => $exceptions_hash,
13 });
14
16 This routine applies a stemming slgorithm to a passed anon array of
17 Swedish words, returning the stemmed words as an anon array.
18
19 It is a 'convienence' wrapper for 'Lingua::Stem::Snowball::Se' that
20 provides a standardized interface and caching.
21
23 1.01 2003.09.28 - Documentation fix
24
25 1.00 2003.04.05 - Initial release
26
28 stem({ -words => \@words, -locale => 'sv', -exceptions => \%exceptions
29 });
30 Stems a list of passed words using the rules of Swedish. Returns an
31 anonymous array reference to the stemmed words.
32
33 Example:
34
35 my $stemmed_words = Lingua::Stem::Sv::stem({ -words => \@words,
36 -locale => 'sv',
37 -exceptions => \%exceptions,
38 });
39
40 stem_caching({ -level => 0|1|2 });
41 Sets the level of stem caching.
42
43 '0' means 'no caching'. This is the default level.
44
45 '1' means 'cache per run'. This caches stemming results during a
46 single
47 call to 'stem'.
48
49 '2' means 'cache indefinitely'. This caches stemming results until
50 either the process exits or the 'clear_stem_cache' method is
51 called.
52
53 clear_stem_cache;
54 Clears the cache of stemmed words
55
57 This code is a wrapper around Lingua::Stem::Snowball::Sv written by Ask
58 Solem Hoel, <ask@unixmonks.net>
59
61 Lingua::Stem Lingua::Stem::Snowball::Sv
62
64 Integration in Lingua::Stem by
65 Benjamin Franz, FreeRun Technologies,
66 snowhare@nihongo.org or http://www.nihongo.org/snowhare/
67
69 Benjamin Franz, FreeRun Technologies
70
71 This code is freely available under the same terms as Perl.
72
75perl v5.28.0 2018-07-14 Lingua::Stem::Sv(3)