我必須替換模式之間的文本。這裏是功能:替換文本之間的模式
public String replace(String text) {
String text = "My name is %NAME%.";
String pattern = "%NAME%";
String textReplaced = "";
"Here comes the code"
return textReplaced;
}
執行函數replace(「Darius」)的結果; 必須是這樣的字符串:「我的名字是大流士。」
我不能使用替換()或replaceFirst(),這是一個條件。
執行此實現的最佳方法是什麼?
爲什麼不能使用'replace'? – Reimeus
'replace'不使用正則表達式。 –
'replace()'不使用Regex,而是'replaceAll()'。 – user2004685