5.javascript Regular Expressions

Source: Internet
Author: User

Direct volume syntax

/pattern/attributes

Create RegExp Object syntax

New REGEXP (pattern, attributes)

1. Modifiers

I perform a match on case insensitive.

G performs a global match (finds all matches rather than stops after the first match is found).

M performs multi-line matching.

2. Square brackets are used to find characters in a range:

[ABC] find any character between square brackets

[^ABC] Find any characters that are not in square brackets

[0-9] Find any 0-9 number

[A-z] find any A-Z letter

(Red|blue|white) to find any of the specified options

3. Meta-Characters

\. Finds a single character, except line wrapping and line ending characters

\w Finding Word characters

\w Find non-word characters

\d Finding numeric characters

\d finding non-numeric characters

\s finding whitespace

\s Finding non-whitespace

\b Finding word boundaries

\b Matching non-word boundaries

4. quantifiers

5.javascript Regular Expressions

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.