扫码一下
查看教程更方便
replaceFirst() 方法用给定的替换替换此字符串中与给定正则表达式匹配的第一个子字符串。
public String replaceFirst(String regex, String replacement)
此方法返回替换后的结果字符串。
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.replaceFirst("(.*)jiyik(.*)", "AMROOD")); System.out.print("Return Value :" ); System.out.println(Str.replaceFirst("jiyik", "AMROOD")); } }
上面示例编译运行结果如下
Return Value :AMROOD
Return Value :Welcome to AMROOD.com