正则表达式 – 密码的正则表达式(至少2位数字,一个特殊字符和最小长度8)

前端之家收集整理的这篇文章主要介绍了正则表达式 – 密码的正则表达式(至少2位数字,一个特殊字符和最小长度8)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在搜索正则表达式,它接受至少两位数字,一个特殊字符和最小密码长度为8.到目前为止,我已经完成了以下操作:[0-9a-zA-Z!@#$%0-9] [!@#$%0-9] [0-9a-zA-Z!@#$%0-9] *
这样的事情应该做的伎俩.
^(?=(.*\d){2})(?=.*[a-zA-Z])(?=.*[!@#$%])[0-9a-zA-Z!@#$%]{8,}

(?=(.*\d){2}) - uses lookahead (?=) and says the password must contain at least 2 digits

(?=.*[a-zA-Z]) - uses lookahead and says the password must contain an alpha

(?=.*[!@#$%]) - uses lookahead and says the password must contain 1 or more special characters which are defined

[0-9a-zA-Z!@#$%] - dictates the allowed characters

{8,} - says the password must be at least 8 characters long

它可能需要一点调整,例如指定您需要哪些特殊字符,但它应该做的伎俩.

原文链接:https://www.f2er.com/regex/356633.html

猜你在找的正则表达式相关文章