我收到java.util.regex.PatternSyntaxException:当我尝试将{{with {and similar replace}}替换为}时,索引0附近非法重复。
Pattern p = Pattern.compile("\"{", Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(formatted);
String result = m.replaceAll("{");
示例:“abc”:“{”xyz“:”1}“。我想将其转换为”abc“:{”xyz“:1}。我想消除”之前和花括号后。
我知道花括号用于表示重复指示。如何替换这样的字符串。