/**
* 对字符串做预处理
* \s 匹配空格、制表符、换页符等空白字符
*/
public static String pretreatString(String str) {
return str.replaceAll("\\s*", "");
}
时间: 2024-10-06 10:42:14
/**
* 对字符串做预处理
* \s 匹配空格、制表符、换页符等空白字符
*/
public static String pretreatString(String str) {
return str.replaceAll("\\s*", "");
}