File: LowerCaseFilter.pm

package info (click to toggle)
libplucene-perl 1.24-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,292 kB
  • ctags: 429
  • sloc: perl: 4,158; makefile: 52
file content (41 lines) | stat: -rw-r--r-- 627 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package Plucene::Analysis::LowerCaseFilter;

=head1 NAME 

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

=head1 SYNOPSIS

	# usa Plucene::Analysis::TokenFilter

	my $next = $l_case_filter->next;

=head1 DESCRIPTION

This normalises token text to lower case.

=head1 METHODS

=cut

use strict;
use warnings;

use base 'Plucene::Analysis::TokenFilter';

=head2 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;