1.去掉首尾空格
String.trim()
trim()是去掉首尾空格
2.去掉所有空格,包括首尾、中间
str.replace(" ", ""); 去掉所有空格,包括首尾、中间
String str = " hell o ";
String str2 = str.replaceAll(" ", "");
System.out.println(str2);
3.去掉所有空格
replaceAll(" +","");
4.替换大部分空白字符,不限于空格,\s 可以匹配空格、制表符、换页符等空白字符的其中任意一个
str = .replaceAll("\\s*", "");
原文地址:https://www.cnblogs.com/xianyao/p/12260733.html
时间: 2024-10-04 00:09:22