我有一个包含换行符的字符串说...
str = "Hello\n"+"Batman,\n" + "Joker\n" + "here\n"
我想知道如何在使用Joker
的字符串 中找到特定单词 say .. 的存在str
java.lang.String.matches()
如果我删除换行符,我发现它会str.matches(".*Joker.*")
返回false
并返回。true
那么用作参数的正则表达式是str.matches()
什么?
一种方法是...str.replaceAll("\\n","").matches(.*Joker.*);