The python regular expression determines whether the string is all lowercase examples _python

Source: Internet
Author: User
Tags lowercase

Copy Code code as follows:

#-*-coding:cp936-*-
Import re
S1 = ' ADKKDK '
S2 = ' ABC123EFG '

an = Re.search (' ^[a-z]+$ ', S1)
If an:
print ' S1: ', An.group (), ' all lowercase '
Else
Print S1, "Not all lowercase!" "

an = Re.match (' [a-z]+$ ', S2)
If an:
print ' s2: ', An.group (), ' all lowercase '
Else
Print S2, "Not all lowercase!" "



1. Regular expressions are not part of Python and need to be referenced by the RE module

2. The matching form is: Re.search (regular expression, with matching string) or re.match (regular expression, with matching string). The difference is that the latter default begins with the start character (^). So

Re.search (' ^[a-z]+$ ', S1) is equivalent to Re.match (' [a-z]+$ ', S2 ')
3. If the match fails, an = Re.search (' ^[a-z]+$ ', S1) returns none

Group is used to group matching results

Copy Code code as follows:

Import re
A = "123abc456"
Print Re.search ([0-9]*) ([a-z]*) ([0-9]*), a). Group (0) #123abc456, return to the whole
Print Re.search ([0-9]*) ([a-z]*) ([0-9]*), a). Group (1) #123
Print Re.search ([0-9]*) ([a-z]*) ([0-9]*), a). Group (2) #abc
Print Re.search ([0-9]*) ([a-z]*) ([0-9]*), a). Group (3) #456

1 The three sets of parentheses in the regular expression divide the result into three groups

Group () is the same group (0) that matches the overall result of the regular expression

Group (1) lists the first bracket matching part, Group (2) lists the second bracket matching part, and group (3) lists the third bracket matching part.

2) No match succeeded, Re.search () returns none

3 of course Zheng is the expression of no parentheses, group (1) certainly wrong.

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.