扫码一下
查看教程更方便
replace() 方法返回一个替换后的新字符串
public String replace(char oldChar, char newChar)
方法返回一个新字符串,该字符串是用 newChar 替换此字符串中所有出现的 oldChar 。
public class Main { public static void main(String args[]) { String Str = new String("Welcome to jiyik.com"); System.out.print("Return Value :" ); System.out.println(Str.replace('o', 'T')); System.out.print("Return Value :" ); System.out.println(Str.replace('l', 'D')); } }
上面示例编译运行结果如下
Return Value :WelcTme tT jiyik.cTm
Return Value :WeDcome to jiyik.com