Class LowerCaseTokenizer
LowerCaseTokenizer performs the function of LetterTokenizer and LowerCaseFilter together. It divides text at non-letters and converts them to lower case. While it is functionally equivalent to the combination of LetterTokenizer and LowerCaseFilter, there is a performance advantage to doing the two tasks at once, hence this (redundant) implementation.
Note: this does a decent job for most European languages, but does a terrible job for some Asian languages, where words are not separated by spaces.
You must specify the required Lucene.Net.Util.LuceneVersion compatibility when creating LowerCaseTokenizer:
- As of 3.1, CharTokenizer uses an int based API to normalize and detect token characters. See IsTokenChar(Int32) and Normalize(Int32) for details.
Inheritance
Implements
Inherited Members
Namespace: Lucene.Net.Analysis.Core
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public sealed class LowerCaseTokenizer : LetterTokenizer, IDisposableConstructors
| Improve this Doc View SourceLowerCaseTokenizer(LuceneVersion, AttributeSource.AttributeFactory, TextReader)
Construct a new LowerCaseTokenizer using a given Lucene.Net.Util.AttributeSource.AttributeFactory.
Declaration
public LowerCaseTokenizer(LuceneVersion matchVersion, AttributeSource.AttributeFactory factory, TextReader in)Parameters
| Type | Name | Description | 
|---|---|---|
| Lucene.Net.Util.LuceneVersion | matchVersion | Lucene.Net.Util.LuceneVersion to match | 
| Lucene.Net.Util.AttributeSource.AttributeFactory | factory | the attribute factory to use for this Lucene.Net.Analysis.Tokenizer | 
| System.IO.TextReader | in | the input to split up into tokens | 
LowerCaseTokenizer(LuceneVersion, TextReader)
Construct a new LowerCaseTokenizer.
Declaration
public LowerCaseTokenizer(LuceneVersion matchVersion, TextReader in)Parameters
| Type | Name | Description | 
|---|---|---|
| Lucene.Net.Util.LuceneVersion | matchVersion | Lucene.Net.Util.LuceneVersion to match | 
| System.IO.TextReader | in | the input to split up into tokens | 
Methods
| Improve this Doc View SourceNormalize(Int32)
Converts char to lower case J2N.Character.ToLower(System.Int32,System.Globalization.CultureInfo) in the invariant culture.
Declaration
protected override int Normalize(int c)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | c | 
Returns
| Type | Description | 
|---|---|
| System.Int32 |