How to match a string's end using a regex pattern in Java?

后端 未结 4 1696
Happy的楠姐
Happy的楠姐 2021-02-19 23:56

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

4条回答
  •  抹茶落季
    2021-02-20 00:47

        public static void main(String[] args) 
    {
        String message = "hi this message is a test message";
        message = message.replaceAll("message$", "email");
        System.out.println(message);
    }
    

    Check this, http://docs.oracle.com/javase/tutorial/essential/regex/bounds.html

提交回复
热议问题