密码正则表达式(必须包含字母数字)

数字与字母的组合,且字母必须包含有大小写
【密码正则表达式(必须包含字母数字)】Regex reg = new Regex(@"^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,20}$");
bool vefiryIsMatch = reg.IsMatch(person_tax_password);
if (!vefiryIsMatch)
{
return Result.Fail>("密码不满足规则(8至20位,数字与字母的组合,且字母必须包含有大小写),请检查");
}

    推荐阅读