I am implementing keyword based search
project. Thus, during the processing the input, the program must extract key words in given ways:
- ignore punctuation marks (i.e .!?, etc.)
- ignore binding words (i.e and, or, so etc.)
- last and important task is find the root of word, for example
communiti
orcommunities
must change tocommunity
.
I used http://snowball.tartarus.org/ but it was not working properly.