Hi,

my application uses a GermanAnalyzer for tokenizing a search string and
constructing Query classes:

        Analyzer an = new
org.apache.lucene.analysis.de.GermanAnalyzer();
        TokenStream ts = an.tokenStream(fieldName, new
StringReader(fieldText));

I have noticed a strange problem with capitalization. Search for
"computer" results in the token "compu". Search for "Computer", however,
results in "comput". The search is supposed to be case-insensitive, so
this must be a bug, right?

Volker


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to