Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

email regex

//Provided by Youtube: CodingBite

let email='hello@example.com'
const handleSubmit = () => {
        let mailformat = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:.[a-zA-Z0-9-]+)*$/;
        let Email = email.trimLeft()
        Email != ''
            ? Email.match(mailformat)
                ? alert('Sucess')
                : alert('Enter Correct Mail!')
            : alert('Fill email first!')
    }
Source by stackabuse.com #
 
PREVIOUS NEXT
Tagged: #email #regex
ADD COMMENT
Topic
Name
6+3 =