📄 lowercasefilter.pm
字号:
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 DESCRIPTIONThis normalises token text to lower case.=head1 METHODS=cutuse 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. =cutsub next { my $self = shift; my $t = $self->input->next() or return; $t->text(lc $t->text); return $t;}1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -