我正在使用正则表达式“ ^ [A-Za-z0-9 ._%+-] + @ [A-Za-z0-9 .-] +。[A-Za-z] {2,4} $”与Online RegexTester上的有效电子邮件完全匹配,但是在角组件中却无法使用。
angular.component.ts:
let emailRegex = new RegExp("^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$");
else if(this.webBillingUser.email && !this.webBillingUser.email.match(emailRegex)){
this.alertService.warning('Invalid email address.', null, null);
return false;
}
请提出可能出问题的地方。