去掉首尾空格
str.trim();
去掉所有空格,包括首尾、中间
str.replace(" ", "");
例如:
String str = " hell o "; String str2 = str.replaceAll(" ", "");
System.out.println(str2); //输出hello(无空格)去掉所有空格
str.replaceAll(" +","");
\s 可以匹配空格、制表符、换页符等空白字符的其中任意一个
str.replaceAll("\\s*", "");
JAVA String 中去掉空格的方法
最新推荐文章于 2024-08-23 16:53:29 发布