aboutsummaryrefslogtreecommitdiffstats
path: root/result
diff options
context:
space:
mode:
Diffstat (limited to 'result')
-rw-r--r--result/regexp/ranges214
1 files changed, 14 insertions, 0 deletions
diff --git a/result/regexp/ranges2 b/result/regexp/ranges2
new file mode 100644
index 00000000..8305732c
--- /dev/null
+++ b/result/regexp/ranges2
@@ -0,0 +1,14 @@
+Regexp: (a|b{0,3}){0,1}
+a: Ok
+aa: Fail
+b: Ok
+bb: Ok
+bbb: Ok
+bbbb: Fail
+ab: Fail
+ba: Fail
+Regexp: ([0-9]{0,3}|([0-9]{0}|[0-9]{0,3})){0,3}
+0: Ok
+00: Ok
+123: Ok
+abc: Fail