Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Plucene::Analysis::LowerCaseFilter

Name Plucene::Analysis::LowerCaseFilter
Version
Located at /usr/share/perl5
File /usr/share/perl5/Plucene/Analysis/LowerCaseFilter.pm
Is Core No
Search CPAN for this module Plucene::Analysis::LowerCaseFilter
Documentation Plucene::Analysis::LowerCaseFilter
Module Details Plucene::Analysis::LowerCaseFilter

NAME

Plucene::Analysis::LowerCaseFilter - normalises token text to lower case


SYNOPSIS

        # usa Plucene::Analysis::TokenFilter
        my $next = $l_case_filter->next;


DESCRIPTION

This normalises token text to lower case.


METHODS

next

        my $next = $l_case_filter->next;

This will return the next token in the stream, or undef at the end of string.


=cut

sub next { my $self = shift; my $t = $self->input->next() or return; $t->text(lc $t->text); return $t; }

1;

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026