소스 검색

判断关键词是否标引号方法修改

huj 4 년 전
부모
커밋
cfa500137a
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      kernel/src/main/java/com/lantone/qc/kernel/util/CatalogueUtil.java

+ 1 - 0
kernel/src/main/java/com/lantone/qc/kernel/util/CatalogueUtil.java

@@ -79,6 +79,7 @@ public class CatalogueUtil {
     public static List<String> noInQuotes(List<String> words, String text) {
         List<String> retWords = Lists.newArrayList();
         if (ListUtil.isNotEmpty(words) && StringUtil.isNotBlank(text)) {
+            text = text.replaceAll("[“”]", "\"");
             List<String> sections = Lists.newArrayList();
             int index = 0;
             for (String txt : text.split("\"")) {