我已经尝试过

Pattern.compile(".*\\{[}]");




 Pattern.compile(".*\\{}");


匹配字符串的示例:“ abc {}”,“ ab {} cd”
不匹配字符串的示例:“ abc {”,“ ab {c} d”

哪个是正确的方法?有没有更好的办法?

最佳答案

您可以避免为此使用正则表达式。您可以使用String.contains

if(myString.contains("{}")) {
    // your stuff here
}

10-07 15:12