diff options
author | Damien George <damien.p.george@gmail.com> | 2014-10-11 18:49:02 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-10-11 18:49:02 +0100 |
commit | 26fa3e30ec84b8ed0cb270d1eca86dcb97389a82 (patch) | |
tree | 9fc4bb3db2cc7beac7847b5caeeb7c966c2eccaa /tests/extmod/ure_split.py | |
parent | 1ce916aefdaee7bca2bcf2bc4ee7e1eb75002f67 (diff) | |
parent | f7bcce05524783ab8b47171a8634a270ca68d040 (diff) | |
download | micropython-26fa3e30ec84b8ed0cb270d1eca86dcb97389a82.tar.gz micropython-26fa3e30ec84b8ed0cb270d1eca86dcb97389a82.zip |
Merge branch 'modure' of https://github.com/pfalcon/micropython into pfalcon-modure
Diffstat (limited to 'tests/extmod/ure_split.py')
-rw-r--r-- | tests/extmod/ure_split.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/extmod/ure_split.py b/tests/extmod/ure_split.py new file mode 100644 index 0000000000..0154f3abc2 --- /dev/null +++ b/tests/extmod/ure_split.py @@ -0,0 +1,35 @@ +try: + import ure as re +except ImportError: + import re + +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(" *") +s = r.split("a b c foobar") +# TODO - no idea how this is supposed to work, per docs, empty match == stop +# splitting, so CPython code apparently does some dirty magic. +#print(s) + +r = re.compile("x*") +s = r.split("foo") +print(s) + +r = re.compile("[a-f]+") +s = r.split("0a3b9") +# TODO - char classes are not yet supported by re1.5 +#print(s) |