Re: Accent insensitive search for greek characters

2017-10-25 Thread Chitra
Hi Robert, Thank you so much for the kind response and seems it's working fine... Could you please ensure whether the below one restricts to the greek region alone? UnicodeSet unicodeSet = new UnicodeSet().applyPattern("[:Greek:]"); Normalizer2 base = Normalizer2.getInstance(I

Re: Accent insensitive search for greek characters

2017-10-24 Thread Robert Muir
Your greek transform stuff does not work because you use "Lower" instead of casefolding. If ICUFoldingFilter works for what you want, but you want to restrict it to greek, then just restrict it to the greek region. See FilteredNormalizer2 and UnicodeSet documentation. And look at how ICUFoldingFil

Re: Accent insensitive search for greek characters

2017-10-24 Thread Chitra
Hi, ICUTransformFilter is working fine for greek characters alone as per requirement. but one case it's breaking( σ & ς are the lower forms of Σ Sigma). *Example:* I indexed the terms πελάτης (indexed as πελατης) & πελάτηΣ (indexed as πελατης).I get the expected search results

Re: Accent insensitive search for greek characters

2017-10-16 Thread Chitra
Hi all, Any help would be greatly appreciated. -- Regards, Chitra

Re: Accent insensitive search for greek characters

2017-10-06 Thread Chitra
Hi koji, I am not having knowledge of greek characters. so only I am looking for standard rules to perform greek accent insensitive search. Does ICUFoldingFilter solve my case? I have tried this already. Its working fine for greek accent characters. But this is not language specific

Re: Accent insensitive search for greek characters

2017-09-27 Thread Koji Sekiguchi
trying to convert Greek Extended characters <http://www.unicode.org/charts/PDF/U1F00.pdf> to basic Greek Unicode <http://www.unicode.org/charts/PDF/U0370.pdf> for providing accent insensitive search... Kindly suggest the better solution to achieve this...? Does ICUFoldingFilter

Re: Accent insensitive search for greek characters

2017-09-27 Thread Mike Sokolov
e: > > > > > >Hi, >                In Lucene, I want to search greek characters(with >accent >insensitive) by removing or replacing accent marks with similar >characters. > >Example: we are trying to convert  Greek Extended characters ><http://www.unicode.org

Re: Accent insensitive search for greek characters

2017-09-27 Thread Ahmet Arslan
nicode <http://www.unicode.org/ charts/PDF/U0370.pdf> for providing accent insensitive search... Kindly suggest the better solution to achieve this...? Does ICUFoldingFilter solve my use-case? -- Regards, Chitra -- Regards,Chitra

Re: Accent insensitive search for greek characters

2017-09-27 Thread Chitra
e, I want to search greek characters(with accent > insensitive) by removing or replacing accent marks with similar characters. > > Example: we are trying to convert Greek Extended characters > <http://www.unicode.org/charts/PDF/U1F00.pdf> to basic Greek Unicode > <http://www.u

Re: Accent insensitive search for greek characters

2017-09-27 Thread Ahmet Arslan
characters. Example: we are trying to convert  Greek Extended characters <http://www.unicode.org/charts/PDF/U1F00.pdf> to basic Greek Unicode <http://www.unicode.org/charts/PDF/U0370.pdf> for providing accent insensitive search... Kindly suggest the better solution to achieve t

Accent insensitive search for greek characters

2017-09-27 Thread Chitra
<http://www.unicode.org/charts/PDF/U0370.pdf> for providing accent insensitive search... Kindly suggest the better solution to achieve this...? Does ICUFoldingFilter solve my use-case? -- Regards, Chitra

Re: Accent Insensitive Search

2008-07-17 Thread Wojtek H
Note that ISOLatin1AccentFilter converts accent characters only from ISO-8859-1 character set. Which means that if you need to convert accents of eastern European languages you need to write your own accent filter. wojtek 2008/7/16 Petite Abeille <[EMAIL PROTECTED]>: > > On Jul 16, 2008, at 10:58

Re: Accent Insensitive Search

2008-07-16 Thread Petite Abeille
On Jul 16, 2008, at 10:58 AM, [EMAIL PROTECTED] wrote: Simple example is Kraków search should also bring Krakow also in search results. As pointed out previously, you need to transliterate your input using something like ISOLatinFilter or such. For example, searching for 'aaiun' should r

Re: Accent Insensitive Search

2008-07-16 Thread Erick Erickson
This topic has been discussed many times on this list, so you'll find far more information if you search the mail archive than I can remember . But no, you don't have to use SOLR. SOLR is built on Lucene, and as far as I know all the analyzers available to SOLR are available in Lucene. Basically,

Re: Accent Insensitive Search

2008-07-16 Thread Anand Jain
Yes you'll need to do it both the times. --Original Message-- From: [EMAIL PROTECTED] To: java-user@lucene.apache.org To: [EMAIL PROTECTED] Sent: Jul 16, 2008 2:45 PM Subject: RE: Accent Insensitive Search I need to search reverse as well, so shall I apply filter while creating index

RE: Accent Insensitive Search

2008-07-16 Thread Aamir.Yaseen
Subject: Accent Insensitive Search Hi All, I need to implememnt Accent Insensitive Searchin my application. Simple example is Kraków search should also bring Krakow also in search results. I have seen many threads discussing sloution with SOLR, But I dont want to use SOLR in my application

Accent Insensitive Search

2008-07-16 Thread Aamir.Yaseen
Hi All, I need to implememnt Accent Insensitive Searchin my application. Simple example is Kraków search should also bring Krakow also in search results. I have seen many threads discussing sloution with SOLR, But I dont want to use SOLR in my application for only this feature. Any su

Re: Accent Insensitive Search

2008-07-16 Thread Anand Jain
Insensitive Search Hi All, I need to implememnt Accent Insensitive Searchin my application. Simple example is Kraków search should also bring Krakow also in search results. I have seen many threads discussing sloution with SOLR, But I dont want to use SOLR in my application for only this

Accent Insensitive Search

2008-07-16 Thread Aamir.Yaseen
Hi All, I need to implememnt Accent Insensitive Searchin my application. Simple example is Kraków search should also bring Krakow also in search results. I have seen many threads discussing sloution with SOLR, But I dont want to use SOLR in my application for only this feature. Any su