在Java中,可以使用replaceAll()方法来移除字符串。该方法可以使用正则表达式来指定要移除的字符串。
下面是一个示例代码:
public class RemoveString {
public static void main(String[] args) {
String str = "Hello, World!";
String removedStr = str.replaceAll("World", "");
System.out.println(removedStr); // 输出:Hello, !
}
}
在上面的示例中,我们使用replaceAll()方法将字符串中的"World"替换为空字符串,从而实现了移除该字符串的效果。