The re module of the Python Common module (regular)

Source: Internet
Author: User

Python's re modules are commonly used in 5 ways, namely Re.match Re.search re.findall re.split re.sub.

Before you introduce the five methods, you need to introduce the basis of the regular.

.  Represents any character, except \ nthe \  escape character [...] character set, which represents whichever character is taken. For example, [abc]d can be matched to an ad BD CD. \d  represents a number, equivalent to [0-9]\d represents a non-numeric [^\d]\s  represents a space \s represents a   non-whitespace \w represents a  word character [a-za-z_0-9]\w represents a non-word character [^\w]* matches the preceding 0 or more characters + Match the first 1 or more characters? Matches the preceding 0 or 1 characters {m} matches the preceding M-character {m,n} matches the first 1 characters m to n times ^  matches with what begins $ match with what begins \a match with what begins  \z match with what begins |  or  left and right expressions take a abc|def (..) represents a whole, (ABC) {2}  matches ABC2 times (? p<name>) group naming  such as (? P<name>tom) \ (number) refers to a group numbered as such as: (\d) abc\1  1ABC1  

  

The re module of the Python Common module (regular)

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.