This commit is contained in:
linfso 2024-07-30 14:53:29 +08:00
parent c534d8d987
commit 1caaffc3c4

View File

@ -251,9 +251,9 @@ public class WaybillHelper {
public static String removeUnSeeChar(String str) {
if(!StringUtils.isEmpty(str)){
return str.replaceAll("\\p{C}+", "").replaceAll("\\u00A0+", " ");
}else{
return " ";
}
return str;
}