I\'m thinking of putting a stop words in my similarity program and then a stemmer (going for porters 1 or 2 depends on what easiest to implement)
I was wondering that si
Yes, you can wrap any stemmer so that you can write something like
String stemmedString = stemmer.stemAndRemoveStopwords(inputString, stopWordList);
Internally, your stemAndRemoveStopwords would