我有一個字符串,當我嘗試運行replaceAll
方法,我得到這個奇怪的錯誤:Java String 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 {
我怎樣才能更換髮生的"{"
?
也許更改評論:) –
@KublaiKhan::) – codaddict
@codaddict,謝謝 – Johnydep