|
NAMEPlucene::Analysis::CharTokenizer - base class for character tokenisers SYNOPSIS # isa Plucene::Analysis::Tokenizer
my $next = $chartokenizer->next;
DESCRIPTIONThis is an abstract base class for simple, character-oriented tokenizers. METHODStoken_reThis should be defined in subclasses. normalizeThis will normalise the character before it is added to the token. nextmy $next = $chartokenizer->next; This will return the next token in the string, or undef at the end of the string.
|