Java中去除字符串中全部空格的幾種方法

JAVA中去掉空格   

1. String.trim()  

trim()是去掉首尾空格  

2.str.replaceAll(" ", ""); 去掉全部空格,包括首尾、中間  java

String str = " hell o ";  
String str2 = str.replaceAll(" ", "");  
System.out.println(str2);

3.或者replaceAll(" +",""); 去掉全部空格  

4.str = .replaceAll("\\s*", "");  
能夠替換大部分空白字符, 不限於空格   
\s 能夠匹配空格、製表符、換頁符等空白字符的其中任意一個 code

相關文章
相關標籤/搜索