在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"替換為空字符串,從而實現了移除該字符串的效果。