标签: java regex
尝试从字符串中删除城市代码以供我添加 我用indexOf编写了删除括号。如何用正则表达式做到这一点?
到
答案 0 :(得分:5)
您可以使用
String clean = str.replaceAll("\\(\\d+\\)", "");