Hi Jarek, On 11/10/2008 at 6:08 AM, Jarek Zgoda wrote: > Wiadomość napisana w dniu 2008-11-10, o godz. 11:14, przez joeMcElroy: > > I need a custom filter to be added to a field which will replace > > special foreign characters with their english counterpart. > > > > for example ø => o > > Grave À È Ì Ò Ù à è ì ò ù => A E I O U a e i o u > > Circumflex Â Ê Î Ô Û â ê î ô û => A E I O U a e i o u > > > > is this possible? > > http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#head-4ebf7aea23b3d6d34a1f8314f9de17334a3e2fac > > I wish such filter exist for Latin2...
The following Lucene patch hasn't been committed yet, and there is no Solr Factory counterpart yet, but: ASCIIFoldingFilter folds all accented letters to their (accent-stripped, if necessary) ASCII equivalents: <https://issues.apache.org/jira/browse/LUCENE-1390> Steve