2015-02-21 10:39:41 +00:00
|
|
|
# test groups, and nested groups
|
|
|
|
|
|
|
|
try:
|
|
|
|
import ure as re
|
2017-02-14 22:56:22 +00:00
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
import re
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 18:14:16 +01:00
|
|
|
raise SystemExit
|
2015-02-21 10:39:41 +00:00
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
2015-02-21 10:39:41 +00:00
|
|
|
def print_groups(match):
|
2020-03-23 02:26:08 +00:00
|
|
|
print("----")
|
2015-02-21 10:39:41 +00:00
|
|
|
try:
|
|
|
|
i = 0
|
|
|
|
while True:
|
2015-03-04 13:51:32 +00:00
|
|
|
print(match.group(i))
|
2015-02-21 10:39:41 +00:00
|
|
|
i += 1
|
|
|
|
except IndexError:
|
|
|
|
pass
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
|
|
|
|
m = re.match(r"(([0-9]*)([a-z]*)[0-9]*)", "1234hello567")
|
2015-02-21 10:39:41 +00:00
|
|
|
print_groups(m)
|
|
|
|
|
2020-03-23 02:26:08 +00:00
|
|
|
m = re.match(r"([0-9]*)(([a-z]*)([0-9]*))", "1234hello567")
|
2015-02-21 10:39:41 +00:00
|
|
|
print_groups(m)
|
2015-03-04 13:51:32 +00:00
|
|
|
|
|
|
|
# optional group that matches
|
2020-03-23 02:26:08 +00:00
|
|
|
print_groups(re.match(r"(a)?b(c)", "abc"))
|
2015-03-04 13:51:32 +00:00
|
|
|
|
|
|
|
# optional group that doesn't match
|
2020-03-23 02:26:08 +00:00
|
|
|
print_groups(re.match(r"(a)?b(c)", "bc"))
|