使用hutool里的方法去掉中英文括号
时间: 2024-01-30 20:44:33 浏览: 191
Java中英文括号转换
可以使用Hutool中的StrUtil类的replace函数去掉中英文括号,具体操作如下:
```
import cn.hutool.core.util.StrUtil;
public class RemoveBrackets {
public static void main(String[] args) {
String str = "(中文括号)English Brackets[]";
System.out.println(StrUtil.replace(StrUtil.replace(str, "(", ""), ")", "").replaceAll("\\[|\\]", ""));
}
}
```
输出结果为:
```
中文括号English Brackets
```
解释一下上述代码的具体操作:
1. 导入cn.hutool.core.util.StrUtil类。
2. 定义一个字符串str,其中包含中英文括号。
3. 使用StrUtil.replace函数,先去掉中文括号,再去掉英文括号,并将其替换为空字符串""。
4. 最后使用replaceAll函数,去掉中括号[],输出去掉括号后的字符串。
阅读全文