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.
我正在尝试验证 Javascript 中的密码,并要求它有一个字母(大写或小写)、一个数字和一个符号。这是我的正则表达式
/(?=.*\d)(?=.*[a-zA-Z])(?=.*\W)/
这似乎不起作用。有什么建议么?
您缺少几个星号。
编辑:问题已被编辑。代码现在按原样工作。