瀏覽代碼

fix query ' \\\\'

xiewj 2 年之前
父節點
當前提交
4716bd5537
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      720yun_fd_manage/gis_common/src/main/java/com/gis/common/util/RegexUtil.java

+ 1 - 0
720yun_fd_manage/gis_common/src/main/java/com/gis/common/util/RegexUtil.java

@@ -50,6 +50,7 @@ public class RegexUtil {
             before = before.replaceAll("\\\\", "\\\\\\\\");
             before = before.replaceAll("_", "\\\\_");
             before = before.replaceAll("%", "\\\\%");
+            before = before.replaceAll("'", "\\\\'");
         }
         return before ;
     }