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