Java中去除字符串中的空格

str.trim(); //去掉首尾空格

str.replace(" ",""); //去除所有空格,包括首尾、中间

str.replaceAll(" ", ""); //去掉所有空格,包括首尾、中间

str.replaceAll(" +","");  //去掉所有空格,包括首尾、中间str.replaceAll("\\s*", ""); //可以替换大部分空白字符, 不限于空格 ;

posted @ 2019-11-14 16:58  田智凯  阅读(332)  评论(0编辑  收藏  举报