Hi
I have tried to run the following code
package org.apache.solr.spelling;

import org.apache.lucene.analysis.fr.FrenchAnalyzer;


public class Test {

      public static void main (String args[]) {
            SpellingQueryConverter sqc = new SpellingQueryConverter();
            sqc.analyzer = new FrenchAnalyzer();
            System.out.println(sqc.convert("français"));
      };

}};

I would expect to get [(français,0,8,type=<ALPHANUM>)]
However I get [(fran,0,4,type=<ALPHANUM>), (ais,5,8,type=<ALPHANUM>)]
Is there any issue with the support of special characters?
Thanks
Jonathan

Reply via email to