用新的字符串替换给定字符串的所有出现Java程序
用户使用replaceAll()方法替换给定字符串的所有出现。假设我们的字符串如下。
String str = "THIS IS DEMO LINE AND NEW LINE!";
这里,我们将字符串“LINE”的所有出现替换为“TEXT”
str.replaceAll("LINE", "TEXT");
以下是最终示例。
示例
public class Demo { public static void main(String[] args) { String str = "THIS IS DEMO LINE AND NEW LINE!"; Sytem.out.println("String = "+str); System.out.println("Replacing all occurrence of string LINE..."); System.out.println("Updated string = "+str.replaceAll("LINE", "TEXT")); } }
输出
String = THIS IS DEMO LINE AND NEW LINE! Replacing all occurrence of string LINE... Updated string = THIS IS DEMO TEXT AND NEW TEXT!
广告