|
@@ -72,6 +72,8 @@ public class THR03139 extends QCCatalogue {
|
|
|
}
|
|
|
List<String> cfButcherOpinionList = Content.cfButcherOpinionList;
|
|
|
String rex1 = "[\\s\\S]*(?=拟)[^,;,;。]*(?=行)[^,;,;。]*(?=术)[\\s\\S]*";
|
|
|
+ String rex2 = "[\\s\\S]*[(?=考虑)|(?=行)][^,;,;。]*(?=术)[\\s\\S]*";
|
|
|
+ String rex3 = "[\\s\\S]*(?=拟)[^,;,;。]*(?=行)[\\s\\S]*";
|
|
|
for (String cfButcherOpinion : cfButcherOpinionList) {
|
|
|
if (illnessRecords.contains(cfButcherOpinion)) {
|
|
|
opinionNum++;
|
|
@@ -79,7 +81,7 @@ public class THR03139 extends QCCatalogue {
|
|
|
}
|
|
|
}
|
|
|
String str = Str(illnessRecords);
|
|
|
- if(str.matches(rex1)){
|
|
|
+ if(str.matches(rex1) || str.matches(rex2) || str.matches(rex3)){
|
|
|
opinionNum++;
|
|
|
continue ac;
|
|
|
}
|