trim()是去掉首尾空格
String str = " hell o ";
String str
System
可以替換大部分空白字符
s 可以匹配空格
或者下面的代碼也可以去掉所有空格
public String remove(String resource
{
StringBuffer buffer=new StringBuffer();
int position=
char currentChar;
while(position<resource
{
currentChar=resource
if(currentChar!=ch) buffer
}
大家看一下實例
代碼如下 import javaimport java
/**
* @author lei
*
*/
public class StringUtils {
public static String replaceBlank(String str) {
String dest = "";
if (str!=null) {
Pattern p = Pattern
Matcher m = p
dest = m
}
return dest;
}
public static void main(String[] args) {
System
}
/*
笨方法
這樣也可以把空格和回車去掉
注
t 水平制表符(u
s 空格(u
r 換行(u
}
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20656.html