A TUI application for viewing and testing regex.
Commands:
- Press
tabto switch from the regex textbox and the test textbox. - Press
enterin the regex textbox to test your regex. C-qto quit
Re-view will tell you if you've got a valid regex or not.
Download a binary for your operating system from the releases page.
You will need to add it to your PATH to easily run it. The
run command is re-view. You can also pass a pre-formed regex as an
argument to the executable - ex: re-view "[tf]oo"
Prerequisites: cmake, make
cmake -S . -B build/ && cmake --build build/
./build/src/fooAdd the -DRUN-TESTS=OFF flag to cmake to disable the tests being included.
This repo was generated by cookiecutter-cpp