Can anyone explain this strange behaviour of Lucene frenchAnalyzer. In some cases this analyzer drops accents
for (String string : tokenizeString(new FrenchAnalyzer(VERSION), word)) {
System.out.println(string);
}
when word=écran it returns ecran (without the accent)
but
when word=écr it returns écr (with the accent)
the tokenizeString() method used is...
public static List<String> tokenizeString(Analyzer analyzer, String string) throws IOException {
List<String> result = new ArrayList<String>();
TokenStream stream = analyzer.tokenStream(null, new StringReader(string));
while (stream.incrementToken()) {
result.add(stream.getAttribute(CharTermAttribute.class).toString());
}
return result;
}