小编典典

正则表达式验证密码强度

all

我的密码强度标准如下:

  • 8 个字符长度
  • 2 个大写字母
  • 1 个特殊字符(!@#$&*)
  • 2个数字(0-9)
  • 3 个小写字母

有人可以给我同样的正则表达式吗?密码必须满足所有条件。


阅读 118

收藏
2022-08-15

共1个答案

小编典典

您可以使用积极的前瞻性断言进行这些检查:

^(?=.*[A-Z].*[A-Z])(?=.*[!@#$&*])(?=.*[0-9].*[0-9])(?=.*[a-z].*[a-z].*[a-z]).{8}$

红色链接

解释:

^                         Start anchor
(?=.*[A-Z].*[A-Z])        Ensure string has two uppercase letters.
(?=.*[!@#$&*])            Ensure string has one special case letter.
(?=.*[0-9].*[0-9])        Ensure string has two digits.
(?=.*[a-z].*[a-z].*[a-z]) Ensure string has three lowercase letters.
.{8}                      Ensure string is of length 8.
$                         End anchor.
2022-08-15