Java的replaceAll()方法

xiaoxiao2021-02-28  13

1、这个方法是String类中的方法

2、源代码是:

public String replaceAll(String regex, String replacement) { return Pattern.compile(regex).matcher(this).replaceAll(replacement); }

3、replaceAll() 方法使用给定的参数 replacement  替换 字符串所有匹配给定的正则表达式的子字符串。

4、参数    regex -- 匹配此字符串的正则表达式。

    newChar -- 用来替换每个匹配项的字符串。

5、返回值

成功则返回替换的字符串,失败则返回原始字符串。

6、实例

public class Test { public static void main(String args[]) { String Str = new String("www.google.com"); System.out.print("匹配成功返回值 :" ); System.out.println(Str.replaceAll("(.*)google(.*)", "runoob" )); System.out.print("匹配失败返回值 :" ); System.out.println(Str.replaceAll("(.*)taobao(.*)", "runoob" )); } }

以上程序执行结果为:

匹配成功返回值 :runoob 匹配失败返回值 :www.google.com
转载请注明原文地址: https://www.6miu.com/read-2300112.html

最新回复(0)