|
@@ -53,7 +53,9 @@ public class BEH0058 extends QCCatalogue {
|
|
|
boolean flag = maritalText.matches(regex);
|
|
|
regex = ".*\\d+-\\d+-\\d+-[1-9].*";
|
|
|
boolean matches = maritalText.matches(regex);
|
|
|
- if (flag || matches) {
|
|
|
+ regex = ".*\\d+,\\d+,\\d+,[1-9].*|.*\\d个.*";
|
|
|
+ boolean isComma = maritalText.matches(regex);
|
|
|
+ if (flag || matches || isComma) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|