A C++ Regular Expression Library
Author: Huang Jiahua
- Judge whether a string (from c++ STL) matches the given regular expression.
- Judge whether a string contains sub-string that matches the given regular expression.
- Find the first sub-string in a string that matches the given regular expression.
- Find all the sub-string in a string that matches the given regular expression.
The documentation file is in this repository.
This project supports CMake out of the box.
Quick start:
mkdir build
cd build
cmake..
Please see the 'CMakeList.txt'.
See docs/index.md for more.
The public interface is in include/*.h. Callers should not include or rely on the details of any other header files in this package.
Header File:
- include/jregex/jregex.h