Regular expressions in jquery analysis regular basis _ regular expressions

Source: Internet
Author: User
quickexpr =/^ (?: [^<]* (<[\w\W]+>) [^>]*$|# ([\w\-]+) $)/
(?:...) Represents a non-capture type

[^<] indicates that it starts with "<" and contains 0 or more ' < ' brackets

(<[\w\W]+>) is a catch type that starts with ' <> ' and contains one or more characters in the middle

$ indicates the end of a character

(# ([\w\-]+)) means a catch type, with ' # ' numbers and strings, numbers, _, and-

Rnotwhite =/\s/
\s represents a symbol other than a blank character

Trimleft =/^\s+/trimright =/\s+$/
The left and right edges of the blank. S is a blank character. ^ prefix denotes string start, $ suffix indicates end of string

Rdigit =/\d/
Indicates a number

Rsingletag =/^< (\w+) \s*\/?> (?:<\/\1>)? $/
^< (\w+) \s*\/?>
The expression starts with ' < ', contains one to many characters, and 0 to multiple blanks, 0 or one '/' and ' > ' End,

(?:<\/\1>)? $

Indicates that the end of the first capture exists or does not exist

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.