/**
* 去右空格
* @param str
* @return
*/
public String trimRight(String str) {
if (str == null || str.equals("")) {
return str;
} else {
return str.replaceAll("[ ]+$", "");
}
} /**
* 去左空格
* @param str
* @return
*/
public String trimLeft(String str) {
if (str == null || str.equals("")) {
return str;
} else {
return str.replaceAll("^[ ]+", "");
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)