瀏覽代碼

入院记录对接修改

rengb 5 年之前
父節點
當前提交
45d2cd7ce0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      trans/src/main/java/com/lantone/qc/trans/comsis/Preproc.java

+ 1 - 1
trans/src/main/java/com/lantone/qc/trans/comsis/Preproc.java

@@ -106,7 +106,7 @@ public class Preproc {
 
         Map<String,String> sectionsNew = Maps.newHashMap();
         sections.keySet().forEach(key->{
-            sectionsNew.put(key.replaceAll("\\s\\p{Zs}",""),sections.get(key));
+            sectionsNew.put(key.replaceAll("[\\s\\p{Zs}]",""),sections.get(key));
         });
 
         return sectionsNew;