[PYTHON] re.group, re.compile et re.VERBOSE

import re

s = ('arn:aws:cloudformation:us-east-2:123456789012:stack/'
     'mystack-mynestedstack-sggfrhxhum7w'
     '/f449b250-b969-11e0-a185-5081d0136786')

# [\w-]Signifie alphanumérique ou trait d'union
#J'ai un nom de groupe
m = re.match(r'arn:aws:cloudformation:(?P<region>[\w-]+):(?P<account_id>[\d]+)'
             r':stack/(?P<stack_name>[\w-]+)/[\w-]+', s)

if m:
    #Accessible par nom de groupe
    print(m.group('region'))
    print(m.group('account_id'))
    print(m.group('stack_name'))

Lors de l'utilisation de re.compile

C'est efficace lorsque vous écrivez plusieurs fois la partie de l'expression régulière.

import re

s = ('arn:aws:cloudformation:us-east-2:123456789012:stack/'
     'mystack-mynestedstack-sggfrhxhum7w'
     '/f449b250-b969-11e0-a185-5081d0136786')

RE_STACK_ID = re.compile(r'arn:aws:cloudformation:(?P<region>[\w-]+):(?P<account_id>[\d]+)'
                         r':stack/(?P<stack_name>[\w-]+)/[\w-]+')

m = RE_STACK_ID.match(s)

if m:
    #Accessible par nom de groupe
    print(m.group('region'))
    print(m.group('account_id'))
    print(m.group('stack_name'))

De plus, dans le cas de re.VERBOSE

Je peux écrire magnifiquement

import re

s = ('arn:aws:cloudformation:us-east-2:123456789012:stack/'
     'mystack-mynestedstack-sggfrhxhum7w'
     '/f449b250-b969-11e0-a185-5081d0136786')

RE_STACK_ID = re.compile(r"""
    arn:aws:cloudformation:
    (?P<region>[\w-]+):             #region
    (?P<account_id>[\d]+):          #account_id
    stack/
    (?P<stack_name>[\w-]+)/         #stack_name
    [\w-]+""", re.VERBOSE)

m = RE_STACK_ID.match(s)

if m:
    #Accessible par nom de groupe
    print(m.group('region'))
    print(m.group('account_id'))
    print(m.group('stack_name'))

Recommended Posts

re.group, re.compile et re.VERBOSE
re.split et re.compile
Diviser re.split et remplacer re.compile