replaceAll()
方法是Java中String
类的一个方法,用于在字符串中替换所有匹配的子字符串。
语法:
public String replaceAll(String regex, String replacement)
参数:
regex
:要替换的子字符串的正则表达式模式。
replacement
:用于替换的新子字符串。
返回值:
使用replaceAll()
方法时,会将字符串中所有与正则表达式匹配的子字符串都替换为指定的新字符串。
示例:
String str = "Hello, World!";
String newStr = str.replaceAll("o", "x");
System.out.println(newStr);
// 输出:Hellx, Wxrld!
在上面的示例中,replaceAll("o", "x")
将字符串中所有的o
替换为x
,最终输出结果为Hellx, Wxrld!
。