Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.