标签: java regex
我已经尝试了
Pattern.compile(".*\\{[}]");
和
Pattern.compile(".*\\{}");
匹配字符串的示例:“abc {}”,“ab {} cd” 不匹配字符串的示例:“abc {”,“ab {c} d”
这样做的正确方法是什么?还有更好的方法吗?