我想要一个与字符串结尾匹配的正则表达式模式。
我正在实现一个词干算法,它将删除一个单词的后缀。
例如,对于单词“Developers”,它应该匹配“s”。
我可以使用以下代码来做到这一点:
Pattern p = Pattern.compile("s");
Matcher m = p.matcher("Developers");
m.replaceAll(" "); // it will replace all 's' with ' '
我想要一个仅匹配字符串结尾的正则表达式,例如replaceLast()
.