The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lingua::Stem::UniNE::FA - Persian stemmer

VERSION

This document describes Lingua::Stem::UniNE::FA v0.08.

SYNOPSIS

    use Lingua::Stem::UniNE::FA qw( stem_fa );

    my $stem = stem_fa($word);

    # alternate syntax
    $stem = Lingua::Stem::UniNE::FA::stem($word);

DESCRIPTION

A stemmer for the Persian (Farsi) language.

This module provides the stem and stem_fa functions, which are synonymous and can optionally be exported. They accept a single word and return a single stem.

SEE ALSO

Lingua::Stem::UniNE provides a stemming object with access to all of the implemented University of Neuchâtel stemmers including this one. It has additional features like stemming lists of words.

Lingua::Stem::Any provides a unified interface to any stemmer on CPAN, including this one, as well as additional features like normalization, casefolding, and in-place stemming.

This module is based on a stemming algorithm by Ljiljana Dolamic and Jacques Savoy of the University of Neuchâtel and implemented in Java.

AUTHOR

Nick Patch <patch@cpan.org>

COPYRIGHT AND LICENSE

© 2012–2014 Nick Patch

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