我正在尝试验证必须具有九位数代码且不能以四个零或四个九结尾的属性,并且必须输入时不带特殊字符。
我尝试了以下代码 -
[RegularExpression(@"(^(?i:([a-z])(?!\1{2,}))*$)|(^[A-Ya-y1-8]*$)", ErrorMessage = "You can not have that")]
public string Test{ get; set; }
但它不起作用。
示例: exasdea0000
,asdea9999
,exasde@0000
或as_ea9999
无法输入。
我怎样才能做到这一点?
答案 0 :(得分:4)
你可以写这样的正则表达式:
^(?!\d+[09]{4}$)\d{9}$
说明:
^ // from start point
(?! // look forward to don't have
.+ // some characters
[09]{4} // followed by four chars of 0 or 9
$ // and finished
)
\d{9} // nine characters of digits only
$ // finished