String类的replace方法接受两个字符,并且用newChar替换此字符串中所有出现的oldChar。
示例import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Nhooo.com");
System.out.print("返回值:" );
System.out.println(Str.replace('o', 'T'));
System.out.print("返回值:" );
System.out.println(Str.replace('l', 'D'));
}
}
输出结果返回值:WelcTme tT TutTrialspTint.cTm
返回值:WeDcome to TutoriaDspoint.com
该replaceAll()方法用给定的替换替换该字符串的每个子字符串,该子字符串与给定的正则表达式匹配。
示例import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Nhooo.com");
System.out.print("返回值:" );
System.out.println(Str.replaceAll("(.*)Tutorials(.*)", "AMROOD"));
}
}
输出结果返回值:AMROOD