使用此replaceFirst()
方法仅用新出现的给定String替换第一次出现的String。
假设我们有以下字符串。
String str = "这是演示文字!";
我们必须用“ EV”替换首次出现的“ IS”。为此,使用replaceFirst()
方法。
str.replaceFirst("IS", "EV");
以下是最终示例,其中替换了首次出现的“ IS”。
public class Demo { public static void main(String[] args) { String str = "这是演示文字!"; System.out.println("String = "+str); System.out.println("Replacing only the first occurrence of substring IS..."); System.out.println("Updated string = "+str.replaceFirst("IS", "EV")); } }
输出结果
String = 这是演示文字! Replacing only the first occurrence of substring IS... Updated string = THEV IS DEMO TEXT!