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

NAME

Lingua::Stem::Patch::EO - Esperanto stemmer

VERSION

This document describes Lingua::Stem::Patch::EO v0.03.

SYNOPSIS

    use Lingua::Stem::Patch::EO qw( stem_eo );

    $stem = stem_eo($word);

    # alternate syntax
    $stem = Lingua::Stem::Patch::EO::stem($word);

DESCRIPTION

Light and aggressive stemmers for the universal language Esperanto. This is a new project under active development and the current stemming algorithm is likely to change.

This module provides the stem and stem_eo functions for the light stemmer, which are synonymous and can optionally be exported, plus stem_aggressive and stem_eo_aggressive functions for the aggressive stemmer. They accept a character string for a word and return a character string for its stem.

SEE ALSO

Lingua::Stem::Patch provides a stemming object with access to all of the Patch 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.

AUTHOR

Nick Patch <patch@cpan.org>

COPYRIGHT AND LICENSE

© 2014 Nick Patch

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