我試圖取代所有$字符在這樣
與S $字符串的一個例子的字符串表達式,另一個$ s和這裏結束。
這樣$字符被空格包圍。
我試過string.replaceAll("$", " $ ");
這會導致非法的參數異常。
當我試圖逃避$字符是這樣的:
string.replaceAll("\$", " $ "); I get an invalid escape sequence error before I even build.
當我嘗試以下方法:
string.replaceAll("\\$", " $ "); I get an illegal argument exception again.
最後,當我試試這個:
string.replaceAll("\\\\$", " $ ");
它沒有影響絃樂。我知道這是愚蠢的,我只是沒有得到。任何人都可以幫忙嗎?
你嘗試用替換。 – 2011-03-16 12:44:18