Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我接到了一项任务,就是将登录屏幕放在一起。我在网上找到了一些可行的方法,但是我在编写正则表达式来验证密码时遇到了问题。应强制执行以下策略 - 密码长度应恰好为 14 个字符,并应包括:
我不知道怎么写。有人可以帮忙吗?
假设“特殊字符”是指任何不是字母或数字的东西:
^(?=.*[a-z].*[a-z])(?=.*[A-Z].*[A-Z])(?=.*[0-9].*[0-9])(?=.*[^A-Za-z0-9].*[^A-Za-z0-9]).{14}$