在Java 中替換字串
在Java 中用另一個字串取代特定的子字串可以使用替換方法輕鬆實現。此方法有兩個參數:要替換的子字串和替換字串。
範例#1:用「Brother」取代「HelloBrother」
取代子字串「HelloBrother」與「Brother」,可以使用下列程式碼:
String replacedString = someString.replace("HelloBrother", "Brother");
範例#2:將“ JAVAISBEST”替換為“BEST”
類似地,要將子字串“JAVAISBEST”替換為“BEST”,您可以使用下面的程式碼:
String replacedString = someString.replace("JAVAISBEST", "BEST");
replace方法傳回一個替換子字串的新字串。原始字串保持不變。
以上是如何使用'replace”方法替換 Java 中的子字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!