Re: i18n query normalization

2005-08-23 Thread Ken Krugler
We have a multi-languaged index and we need to match accented characters with non accented characters. For example, if a document contains: mângão, the query: mangao should match it. I guess I would have to build some sort of analyzer/tokenizer for this. I was wondering if there are

Re: i18n query normalization

2005-08-23 Thread Daniel Naber
On Tuesday 23 August 2005 19:15, John Wang wrote: >  We have a multi-languaged index and we need to match accented > characters with non accented characters. For example, if a document > contains: mângão, the query: mangao should match it. See ISOLatin1AccentFilter in contrib/analyzers in SVN. r

i18n query normalization

2005-08-23 Thread John Wang
Hi: We have a multi-languaged index and we need to match accented characters with non accented characters. For example, if a document contains: mângão, the query: mangao should match it. I guess I would have to build some sort of analyzer/tokenizer for this. I was wondering if there a