标签: javascript regex
我想在我的正则表达式代码中添加一个验证,该验证不允许接受无符号字符串NonAlphanumeric。
const passwordRegex = /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])[0-9a-zA-Z]{6,}$/;