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

NAME

KinoSearch::Analysis::CaseFolder - Normalize case, facilitating case-insensitive search.

SYNOPSIS

    my $case_folder = KinoSearch::Analysis::CaseFolder->new;

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

DESCRIPTION

CaseFolder normalizes text according to Unicode case-folding rules, so that searches will be case-insensitive.

CONSTRUCTORS

new()

    my $case_folder = KinoSearch::Analysis::CaseFolder->new;

Constructor. Takes no arguments.

INHERITANCE

KinoSearch::Analysis::CaseFolder isa KinoSearch::Analysis::Analyzer isa KinoSearch::Object::Obj.

COPYRIGHT AND LICENSE

Copyright 2005-2010 Marvin Humphrey

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