Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 12, 2022 04:10 pm GMT

EMAIL VALIDATION

`const regex = /\S+@\S+.\S+/

console.log(regex.test("miraj@gmailcom"))

const data =/[a-zA-Z0-9._-]{3,}@[a-zA-Z0-9.-]{3,}.[a-zA-Z]{2,4}/

const email ='[email protected]'

console.log(email.match(data)? 'yes':'no');`


Original Link: https://dev.to/mirajhad/email-validation-4089

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To