File: README

package info (click to toggle)
liblingua-stem-it-perl 0.02-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 76 kB
  • sloc: perl: 203; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,231 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
NAME
    Lingua::Stem::It - Porter's stemming algorithm for Italian

SYNOPSIS
        use Lingua::Stem::It;
        my $stems = Lingua::Stem::It::stem({ -words => $word_list_reference,
                                             -locale => 'it',
                                             -exceptions => $exceptions_hash,
                                          });
    
        my $stem = Lingua::Stem::It::stem_word( $word );                                      

DESCRIPTION
    This module applies the Porter Stemming Algorithm to its parameters,
    returning the stemmed words.

    The algorithm is implemented exactly (I hope :-) as described in:

        http://snowball.tartarus.org/algorithms/italian/stemmer.html

    The code is carefully crafted to work in conjunction with the the
    Lingua::Stem module by Benjamin Franz, from which I've also
    borrowed some functionalities (caching and exception list).

AUTHOR
    Aldo Calpini, dada@perl.it

SEE ALSO
     Lingua::Stem

COPYRIGHT
    Copyright (c) Aldo Calpini, dada@perl.it. All rights reserved.

    This library is free software; you can redistribute it and/or 
    modify it under the same terms as Perl itself.