gpt4 book ai didi

java - java regex 如何查找和替换

转载 作者:行者123 更新时间:2023-12-01 12:36:17 26 4
gpt4 key购买 nike

删除括号及其之间的所有内容的正则表达式是什么?

input  = "hello world (this is a test1) (test 2) hello";
output = "hello world hello";

我尝试过:

str.replaceAll("//(.*?//)", "");

最佳答案

您正在使用正斜杠字符来转义 () 特殊字符。您需要使用反斜杠:

String output = input.replaceAll("\\(.*?\\)", "");

关于java - java regex 如何查找和替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25556309/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com