在Java中,replace()方法用于替换字符串中的指定字符或字符串。
replace()方法有两种重载形式:
replace(char oldChar, char newChar)
:将字符串中的所有oldChar字符替换为newChar字符。replace(CharSequence target, CharSequence replacement)
:将字符串中的所有target字符串替换为replacement字符串。示例代码如下:
String str = "Hello, World!";
// 将字符'H'替换为'J'
String newStr1 = str.replace('H', 'J');
System.out.println(newStr1); // 输出:Jello, World!
// 将字符串"Hello"替换为"Hi"
String newStr2 = str.replace("Hello", "Hi");
System.out.println(newStr2); // 输出:Hi, World!
注意: