aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/working/regex.ey6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/working/regex.ey b/examples/working/regex.ey
index bbf557f..5d0992d 100644
--- a/examples/working/regex.ey
+++ b/examples/working/regex.ey
@@ -1,2 +1,8 @@
"the quick brown fox jumps over the lazy dog"
{ "(the)(.*)" regex } { dump } loop
+"abcdefghijklmnopqrstuvwxyz"
+{ "([d-h][d-h])(.*)" regex } { dump } loop
+"abcdefghijklmnopqrstuvwxyz"
+{ "^(...)(.*)" regex } { dump } loop
+"abcdefghijklmnopqrstuvwxyz"
+"(...)$" regex { dump } rep