Project

iregexp

0.0
No release in over a year
iregexp implements converters and miscellaneous tools for I-Regexp
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

Runtime

 Project Readme

iregexp

Tools for https://datatracker.ietf.org/doc/draft-ietf-jsonpath-iregexp

Create a parse tree:

$ iregexp -e "o.o|aa"
["alt", ["seq", "o", ["dot"], "o"], ["seq", "a", "a"]]

Convert to PCRE form:

$ iregexp  -tpcre -e "o.o|aa"
\A(?:o.o|aa)\z
$ iregexp  -tpcre -e "(o.o|aa)"
\A(?:o.o|aa)\z

Convert to ECMAScript (JavaScript) form:

$ iregexp  -tjs -e "o.o|aa"
^(?:o[^\n\r]o|aa)$

Get a number of (somewhat straitjacketed) examples:

$ iregexp  -texample -e "o.o|aa"
oao
obo
...

Get a random example:

$ iregexp  -trandom -e "o.o|aa"
o9o
$ iregexp  -trandom -e "o.o|aa"
aa

Run a small test set:

$ iregexp -l $(VISUAL=echo gem open iregexp)/test-data/simple.irl
...
=a                "a"
                  "a"
=🤔                "🤔"
                  "🤔"
-\                Expected one of [\(-\+], [\--\.], "?", [\[-\^], "n", "r", "t", [\{-\}] at line 1, column 2 (byte 2):
                  \
                  ~^
-\v               Expected one of [\(-\+], [\--\.], "?", [\[-\^], "n", "r", "t", [\{-\}] at line 1, column 2 (byte 2):
                  \v
                  ~^
=aa|bb+           ["alt", ["seq", "a", "a"], ["seq", "b", ["rep", 1, false, "b"]]]
                  "aa", "bb", "bbb", "bbbb", "bbbbb", "bbbbbb"
...

The lines in the test set start with "=" (test should be OK), "-" (test should fail), and "*" (test should be OK, but regexp example generator cannot handle this test ). The JSON-like expression to the right of the example is a path tree.

Tom Lord's excellent regexp example generator is then used to generate a few examples.

Tests that should fail show a parser error message instead.

(Compare your output with test-data/simple.out.)

More docs to follow; until then lib/writer/iregexp-writer.rb is probably the best explanation of the simple JSON-like parse tree syntax.