circuitpython/tests/extmod/ure_group.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
661 B
Python
Raw Normal View History

# test groups, and nested groups
try:
import ure as re
2017-02-14 17:56:22 -05:00
except ImportError:
try:
import re
except ImportError:
print("SKIP")
raise SystemExit
2021-03-15 09:57:36 -04:00
def print_groups(match):
2021-03-15 09:57:36 -04:00
print("----")
try:
i = 0
while True:
print(match.group(i))
i += 1
except IndexError:
pass
2021-03-15 09:57:36 -04:00
m = re.match(r"(([0-9]*)([a-z]*)[0-9]*)", "1234hello567")
print_groups(m)
2021-03-15 09:57:36 -04:00
m = re.match(r"([0-9]*)(([a-z]*)([0-9]*))", "1234hello567")
print_groups(m)
# optional group that matches
2021-03-15 09:57:36 -04:00
print_groups(re.match(r"(a)?b(c)", "abc"))
# optional group that doesn't match
2021-03-15 09:57:36 -04:00
print_groups(re.match(r"(a)?b(c)", "bc"))