A regular expression engine which supports compiling regular expressions into virtual machine bytecode for pattern matching at fast speed.
- Plain Text
- Branch
- Group
- Capture by index
- Capture by lable
- Unicode Internal & UTF-8 Support
Python2 is required to generate the Makefile. (Python3 is not supported yet)
Use the following command to generate the Makefile:
$ ./configure
And the following commands to build the project:
$ make # for building the demo program
$ make static # for building the static library
$ make shared # for building the shared (dynamic) library
Usage : qre <testname> <arguments>
analysis <pattern>
match <pattern> <haystack>
BSD-3