java 字符串中 [] 替换 为 “”
时间: 2023-06-04 09:03:28 浏览: 253
JAVA字符串函数一览.txt
可以使用Java中的replaceAll()方法,将所有的“[]”替换为空字符串。示例代码如下:
String str = "abc[def]ghi[jkl]mno";
str = str.replaceAll("\\[\\]", "");
System.out.println(str);
输出结果为:"abcdefghijklmno"。
阅读全文