是的,replaceAll方法可以用空字符串替换原字符串中的某个子字符串。例如:
String str = "Hello, world!"; String newStr = str.replaceAll("world", ""); System.out.println(newStr); // 输出 Hello, !
在上面的例子中,replaceAll方法将字符串"world"替换为一个空字符串,最终输出结果为"Hello, !"。