im searching for a possibility to stemm strings in java. First I wanted to do it with lucene but all the examples I found in the web were deprecated. (SnowballAnalyzer, PorterStemmer, ...) I just want to stemm whole sentences.
public static String stemSentence(String sentence) {
...
return stemmedSentence;
}
How can i do it?