The regular expression of the IP address is detected by JS

Source: Internet
Author: User

Regular Expressions:

((2[0-4]\d|25[0-5]| [01]?\d\d?] \.) {3} (2[0-4]\d|25[0-5]| [01]?\d\d?]

((2[0-4]\d| 25[0-5]| [01]?\d\d?] \.) {3} (2[0-4]\d|25[0-5]| [01]?\d\d?]

The red block represents: the first character is 2, the second character is 0 to 4, and the third character is any digit. Represents 200~249.

The green block represents: the first character is 2, the second character is 5, and the third character is 0 to 5. Represents 250~255.

The blue block represents: The first character is 0, or 1, or can not have this character, the second character is any one digit, the third character is any one digit, can not have this character. Represents the 1~199, which can have leading zeros.

| means "or", as long as the meaning of any one of the three pieces is satisfied.

Before and after the "(" and ")" represents this is a set of

((2[0-4]\d|25[0-5]| [01]?\d\d?] \.) {3} (2[0-4]\d|25[0-5]| [01]?\d\d?]

{3} represents repeated three times. such as "255.255.255."

((2[0-4]\d|25[0-5]| [01]?\d\d?] \.) {3} (2[0-4]\d|25[0-5]|[ 01]?\d\d?)

In the end, the meaning of this group is "." The same test is added to the back.

The regular expression of the IP address is detected by JS

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.