什么功能可以用另一个字符串替换一个字符串?
实例1:将替代哪些"HelloBrother"用"Brother"?
"HelloBrother"
"Brother"
例2:将替代哪些"JAVAISBEST"用"BEST"?
"JAVAISBEST"
"BEST"
该replace方法是你要寻找的。
replace
例如:
String replacedString = someString.replace("HelloBrother", "Brother");