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

NAME

KSx::Analysis::StripAccents - Remove accents and fold to lowercase

SYNOPSIS

    my $stripper = KSx::Analysis::StripAccents->new;

    my $polyanalyzer = KinoSearch::Analysis::PolyAnalyzer->new(
        analyzers => [ $stripper, $tokenizer, $stemmer ],
    );

DESCRIPTION

This analyser strips accents from its input, removes accents, and converts it to lowercase.

CONSTRUCTOR

new

Construct a new accent-stripping analyser.

PREREQUISITES

This module requires perl and the following modules, which you can get from the CPAN:

Text::Unaccent

KinoSearch

AUTHOR & COPYRIGHT

Copyright (C) Father Chrysostomos

This program is free software; you may redistribute or modify it (or both) under the same terms as perl.

SEE ALSO

KinoSearch::Analysis::Analyzer (the base class)

KinoSearch::Analysis::LCNormalizer (which this module was based on, and is intended as a drop-in replacement for)

KinoSearch