I want a regular expression pattern that will match with the end of a string.
I\'m implementing a stemming algorithm that will remove suffixes of a word.
E.g. for
take a look for following example:
String ss = "Developers".replaceAll(".$", " ");