JAVA字符串去空格 回车
程序员文章站
2024-03-22 17:37:34
...
public static void main(String[] args) {
String str ="value" ;
Pattern p = Pattern.compile("\\s*|\t|\r|\n");
Matcher m = p.matcher(str);
str = m.replaceAll("");
}