共计 317 个字符,预计需要花费 1 分钟才能阅读完成。
在 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" 替换为空字符串,从而实现了移除该字符串的效果。
丸趣 TV 网 – 提供最优质的资源集合!
正文完