标签: regex typescript
如果在密码中写了点,我应该在此正则表达式中添加什么使其无效?
function passwordValidator(control: FormControl) { if (!control.value.match(/^(?=.{8,})(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#$%^&+=*]).*$/)) { return { invalidPassword: true }; } }