Python Learning Notes (group)

Source: Internet
Author: User

In a regular expression, group () is used to present a string that is intercepted by a packet ,() to group

ImportRea="123abc456"PrintRe.search ("([0-9]*) ([a-z]*) ([ 0-9]*)", a). Group (0)#123abc456, return to the wholePrintRe.search ("([0-9]*) ([a-z]*) ([ 0-9]*)", a). Group (1)#123PrintRe.search ("([0-9]*) ([a-z]*) ([ 0-9]*)", a). Group (2)#ABCPrintRe.search ("([0-9]*) ([a-z]*) ([ 0-9]*)", a). Group (3)#456

The reason

1. Three sets of parentheses in regular expressions divide matching results into three groups

    • Group () with group (0) is the overall result of matching regular expressions
    • Group (1) lists the first bracket matching section, Group (2) lists the second bracket matching part, and group (3) lists the third bracket matching part.

2. No match succeeded, Re.search () return None

Python Learning Notes (group)

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.