generated from dxfeng/secondev-chapanda-feishu
BUG-文本去除Unicode特殊字符
This commit is contained in:
parent
8b0ebe02c8
commit
486a7413e4
|
|
@ -204,6 +204,6 @@ public class QllResumePo {
|
|||
if (StringUtils.isBlank(str)) {
|
||||
return "";
|
||||
}
|
||||
return str.replace("\\n", "\n");
|
||||
return str.replaceAll("[\\pC]", "").replace("\\n", "\n").replace("\\r", "");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue