我想更換內容(雙下劃線左右,見代碼)給定的字符串中,但不能讓它開始工作。因此,像這樣:Java的正則表達式下劃線
String test = "Hello! This is the content: __content__";
test.replaceAll("__content__", "Yeah!");
System.out.println("Output: " + test);
所以輸出應該是:"Output: Hello! This is the content: Yeah!"
正則表達式中的replaceAll的第一個參數簡單是錯誤的,但我不知道正確的一個。任何人都知道?