Regular expression of JavaScript

Source: Internet
Author: User

There are two ways to create a regular expression:

  1. Literal quantity
1 var re =/ab+c/;

2. Call the constructor of the RegExp object

1 var re = RegExp ("Ab+c");

Second, special characters

  • ^ Start of match input
  • $ match end of input
  • * Match a previous character 0 or more times
  • + Match a previous character 1 or more times
  • ? Match a previous character 0 or 1 times
  • . Matches any single character except the beginning of a new line
  • {n} repeats n times
  • {n,m} repeats n-m times
  • [ASD] A character set that fits any character
  • [^ASD] anti-character set
  • [\b] matches a push grid
  • \d Match a number
  • \d matches a non-numeric character
  • \f Match a page break
  • \ n matches a line break
  • \ r matches a carriage return character
  • \s matches a white space character, including spaces, tabs, page breaks, and line breaks
  • \s matches a non-whitespace character

  

Regular expression of JavaScript

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.