我有以下正则表达式来验证密码是否包含至少一个大写字母、至少一个小写字母和至少一个数字。
Regex rxLowercase = new Regex( @"\p{Ll}" ); // Unicode: All lowercase letters
Regex rxUppercase = new Regex( @"\p{Lu}" ); // Unicode: All uppercase letters
Regex rxDigits = new Regex( @"\p{Nd}" ); // Unicode: All decimal digits
我想把一个属性放到一个特定的属性上,比如
[RegularExpression( /* something here which combines above expressions */ )]
[StringLength( 1024, MinimumLength = 8 )]
public string NewPassword
{
get;
set;
}
如何做到这一点?