修复正则bug
This commit is contained in:
parent
9d03bc48d4
commit
0a78845eb1
|
@ -62,7 +62,7 @@
|
||||||
description += " contains: " + this.value;
|
description += " contains: " + this.value;
|
||||||
break;
|
break;
|
||||||
case "NOT_CONTAINS":
|
case "NOT_CONTAINS":
|
||||||
expression = "^((?!" + this.value + ").)*$";
|
expression = "(?s)^((?!" + this.value + ").)*$";
|
||||||
description += " not contains: " + this.value;
|
description += " not contains: " + this.value;
|
||||||
break;
|
break;
|
||||||
case "EQUALS":
|
case "EQUALS":
|
||||||
|
|
Loading…
Reference in New Issue