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

NAME

Lingua::Stem::Patch::PL - Polish stemmer

VERSION

This document describes Lingua::Stem::Patch::PL v0.06.

SYNOPSIS

    use Lingua::Stem::Patch::PL qw( stem_pl );

    $stem = stem_pl($word);

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

DESCRIPTION

A stemmer for the Polish language.

This module provides the stem and stem_pl functions for the light stemmer, which are synonymous and can optionally be exported. 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.

This module is based on a stemming algorithm by Błażej Kubiński and implemented in a Python script.

AUTHOR

Nick Patch <patch@cpan.org>

This module is brought to you by Shutterstock. Additional open source projects from Shutterstock can be found at code.shutterstock.com.

COPYRIGHT AND LICENSE

© 2014–2015 Shutterstock, Inc.

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