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

数字与字母的组合,且字母必须包含有大小写

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位,数字与字母的组合,且字母必须包含有大小写),请检查");
                    }
 

你可能感兴趣的:(正则表达式)