Skip to content

@technobuddha > library > RegExp > Constants

Constant: email

ts
const email: RegExp;

Defined in: regexp.ts:234

validate an valid email address

Example

typescript
email.test('user@example.com'); // true
email.test('user@sub.example.co'); // true
email.test('invalid@domain'); // false
email.test('not-an-email'); // false