如何使用replaceAll()方法替换括号?例如,如果我有字符串"[][]teststring]]]]"
,我想使用replaceAll()将其减少为“teststring”。
答案 0 :(得分:6)
假设你只想摆脱方括号:
String output = "[][]teststring]]]]".replaceAll("[\\[\\]]", "");
我还建议您查看regular expression documentation。
答案 1 :(得分:0)
return yourWord.replaceAll("\\[","").replaceAll("\\]","")