首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Java中除去字符串中的所有空格

2012-09-21 
Java中去除字符串中的所有空格String str hell o String str2 str.replaceAll( , )System.ou

Java中去除字符串中的所有空格
 
String str = " hell o "; 
String str2 = str.replaceAll(" ", ""); 
System.out.println(str2); 
 
  
 
3.或者replaceAll(" +",""); 去掉所有空格 
 
  
 
4.str = .replaceAll("\\s*", ""); 
 
可以替换大部分空白字符, 不限于空格  
\s 可以匹配空格、制表符、换页符等空白字符的其中任意一个 

热点排行