Re: Editing StopWordList

2010-12-21 Thread manjula wijewickrema
Hi Gupta, Thanx a lot for your reply. But I could not understand whether I could modify (adding more words) to the default stop word list or should I have to make a new list as an array as follows. public string[] NEW_STOP_WORDS = { a, and, are, as, at, be, but, by, for, if, in, into, is, no,

Re: Editing StopWordList

2010-12-21 Thread Anshum
The default stopword list is final and so you'd have to copy this to some other object and add terms to it instead of being able to directly modify it. So all said and done, what I meant when I said you could use it was that you could read that object and construct your own set (almost as case 2

Editing StopWordList

2010-12-20 Thread manjula wijewickrema
Hi, 1) In my application, I need to add more words to the stop word list. Therefore, is it possible to add more words into the default lucene stop word list? 2) If is it possible, then how can I do this? Appreciate any comment from you. Thanks, Manjula.

Re: Editing StopWordList

2010-12-20 Thread Anshum
Hi Manjula, You could initialize the Analyzer using a modified stop word set. Use the *StopAnalyzer.ENGLISH_STOP_WORDS_SET *to get the default stopset and then add your own words to it. You could then initialize the analyzer using this new stop set instead of the default stop set. Hope that helps.