Re: Question about special characters

2006-05-26 Thread Chris Hostetter
: Thks for the reply, ut I don't know how to do this change in : SOLatin1AccentFilter. : Can you give me some advice in this action? I've never really looked at the internals of ISOLatin1AccentFilter, but the basic idea is to subclass it with a new TokenFilter that maintains a one token "buffer"

Re: Question about special characters

2006-05-26 Thread Dan Wiggin
Thks for the reply, ut I don't know how to do this change in SOLatin1AccentFilter. Can you give me some advice in this action? 2006/5/25, Chris Hostetter <[EMAIL PROTECTED]>: I think I'm missing something here. the whole point of the ISOLatin1AccentFilter is to replace accented characters wit

Re: Question about special characters

2006-05-25 Thread Chris Hostetter
I think I'm missing something here. the whole point of the ISOLatin1AccentFilter is to replace accented characters with their unaccented equivalent -- it sounds like that's working just fine, If you want teh words in teh term vector to contain the accents, why don't you stop using that filter? i

Re: Question about special characters

2006-05-25 Thread Dan Wiggin
My own solution until I have another one better, I use FuzzyQuery for every term in the phrase. For example "My work is the worst" ->> My~ work~ is~ the~ worst What do you think about this uggly solution? I don't have anything more ideas. 2006/5/24, Dan Wiggin <[EMAIL PROTECTED]>: I need some f