码迷,mamicode.com
首页 > 编程语言 > 详细

Java_去除字符串空格

时间:2018-02-09 14:50:47      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:style   空格   trim   字符串   --   表示   happy   str   acea   

1 String ss = "    happy new year ";
2 System.out.println(ss + "------" + ss.length());
3 //"    happy new year ------16"
4 System.out.println(ss.trim() + "------" + ss.trim().length());
5 //"happy new year------14"
6 System.out.println(ss.replaceAll(" ", "") + "------" + ss.replaceAll(" ", "").length());
7 //"    happynewyear------13"
8 System.out.println(ss.replaceAll("\\s*", "") + "------" + ss.replaceAll("\\s*", "").length());
9 //"happynewyear------12"  \s在正则里就表示空白符

 

Java_去除字符串空格

标签:style   空格   trim   字符串   --   表示   happy   str   acea   

原文地址:https://www.cnblogs.com/rocker-pg/p/8434785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!