Java 中的 replace() 和 replaceAll() 有什么区别?
String 类的 replace 方法接受两个字符,它用 newChar 替换该字符串中所有出现的 oldChar。
示例
import java.io.*; public class Test { public static void main(String args[]) { String Str = new String("Welcome to Tutorialspoint.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 TutTrialspTint.cTm Return Value :WeDcome to TutoriaDspoint.com
replaceAll() 方法用给定的替换替换与给定正则表达式匹配的该字符串的每个子字符串。
示例
import java.io.*; public class Test { public static void main(String args[]) { String Str = new String("Welcome to Tutorialspoint.com"); System.out.print("Return Value :" ); System.out.println(Str.replaceAll("(.*)Tutorials(.*)", "AMROOD")); } }
输出
Return Value :AMROOD
广告