Java String replaceAll() 方法

返回上一级

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

语法

public String replaceAll(String regex, String replacement)

参数

参数 说明
regex 匹配此字符串的正则表达式
newChar 用来替换每个匹配项的字符串

返回值

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

范例

下面的范例使用 replaceAll() 方法替换指定的字符串

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(.*)",
                            "twle" ));
        System.out.print("匹配失败返回值 :" );
        System.out.println(Str.replaceAll("(.*)taobao(.*)",
                            "twle" ));
    }
}

编译运行以上 Java 代码,输出结果如下

匹配成功返回值 :twle
匹配失败返回值 :www.google.com

返回上一级

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.