Java 字符串替换所有方法都给出非法重复错误?
2022-09-01 16:38:38
我有一个字符串,当我尝试运行该方法时,我得到这个奇怪的错误:replaceAll
String str = "something { } , op";
str = str.replaceAll("o", "\n"); // it works fine
str = str.replaceAll("{", "\n"); // does not work
我得到一个奇怪的错误:
Exception in thread "main" java.util.regex.PatternSyntaxException:
Illegal repetition {
如何替换出现的 ?"{"