标签:ring return lan 换行 static pil ati 名称 compile
/**
* 方法名称:replaceBlank
* 方法描述: 将string字符串中的换行符进行替换为""
*
*/
public static String replaceBlank(String str) {
String dest = "";
if (str != null) {
Pattern p = Pattern.compile("\t|\r|\n");
Matcher m = p.matcher(str);
dest = m.replaceAll("");
}
return dest;
}
标签:ring return lan 换行 static pil ati 名称 compile
原文地址:https://www.cnblogs.com/xiaofengshan/p/13287650.html