Regular expression detects whether the email address entered by the user is legitimate

Source: Internet
Author: User
Tags regular expression

In the development of the registration system, the need to detect the user input email address is legitimate, can use regular expression to detect, below a small example, I hope to help you

In the registration system development, the need to detect the user input email address is legitimate, can be detected in JS or PHP, but the difference is not small, can use regular expression to detect. Here is an example of JS: The code is as follows: function validateemail (email) {var re =/^ ([^<> () [].,;:s@]]+ (. [ ^<> () [].,;:s@ "]+) *) | (  ".+")) @ ([[0-9]{1,3}. [0-9] {1,3}. [0-9] {1,3}. [0-9] {1,3}]) | (([a-za-z-0-9]+.)  +[a-za-z]{2,})) $/;  return re.test (email); }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.