-3

如何使用 replaceAll() 方法替换括号?例如,如果我有字符串"[][]teststring]]]]",我想使用 replaceAll() 将其减少为“teststring”。

4

2 回答 2

6

假设您只想摆脱方括号:

String output = "[][]teststring]]]]".replaceAll("[\\[\\]]", "");

我还建议您查看正则表达式文档

于 2012-11-07T17:27:20.693 回答
0
return yourWord.replaceAll("\\[","").replaceAll("\\]","")

JavaDocs

于 2012-11-07T17:29:39.230 回答