circuitpython/tests/extmod/ure_split.py

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

34 lines
527 B
Python
Raw Normal View History

2014-09-14 18:14:28 -04:00
try:
import ure as re
except ImportError:
2017-02-14 17:56:22 -05:00
try:
import re
except ImportError:
print("SKIP")
raise SystemExit
2014-09-14 18:14:28 -04:00
r = re.compile(" ")
s = r.split("a b c foobar")
print(s)
r = re.compile(" +")
s = r.split("a b c foobar")
print(s)
r = re.compile(" +")
s = r.split("a b c foobar", 1)
print(s)
r = re.compile(" +")
s = r.split("a b c foobar", 2)
print(s)
r = re.compile("[a-f]+")
s = r.split("0a3b9")
print(s)
# bytes objects
r = re.compile(b"x")
s = r.split(b"fooxbar")
print(s)