replace email validation regex with a simpler alternative

This commit is contained in:
Hazelnoot 2025-04-01 12:20:49 -04:00
parent ddbf5f354c
commit 3455223fec

View file

@ -43,7 +43,9 @@ export class UtilityService {
// https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address // https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address
@bindThis @bindThis
public validateEmailFormat(email: string): boolean { public validateEmailFormat(email: string): boolean {
const regexp = /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/; // Note: replaced MK's complicated regex with a simpler one that is more efficient and reliable.
const regexp = /^.+@.+$/;
//const regexp = /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;
return regexp.test(email); return regexp.test(email);
} }