在java中1.8.0 我試圖取代%,但它不匹配java查找和替換%
String str = "%28Sample text%29";
str.replaceAll("%29", "\\)");
str.replaceAll("%28", "\\(");
System.out.println("Replaced string is " + str);
我已經嘗試了所有這Replace symbol "%" with word "Percent"沒有爲我工作。提前致謝。
使用'replace'你實際上並不需要匹配一個正則表達式。 –
'replaceAll'不會對原始'String'對象進行任何更改。相反,結果將作爲新的String對象返回。 – Alex