Some days I just can't read... First question: Why do you require standard analyzer?Are you really making use of the special processing? Take a look at other analyzer options. PatternAnalyzer, SimpleAnalyzer, etc.
If you really require StandardAnalyzer, consider using two fields. field_original and field_processed. Store (but don't index) the original string in field_original. pre-process and analyze (but don't store) in field_processed. Search against field_processed and display from field_original. This won't bloat your index, since the operations are orthogonal anyway. Best Erick On Sat, Jan 1, 2011 at 11:45 PM, Benzion G <benzi...@yahoo.com> wrote: > > Of course I want to store and then show to user the original message. > That's > why I can't change it and the place to handle the dots is the Analyzer > area. > So how can I make the StandardAnalyzer to handle dots as commas? > -- > View this message in context: > http://lucene.472066.n3.nabble.com/parsing-Java-log-file-with-Lucene-3-0-3-tp2173046p2178710.html > Sent from the Lucene - Java Users mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org > For additional commands, e-mail: java-user-h...@lucene.apache.org > >