/Regexed

something

Primary LanguageC++

Regexed

Really simple Regex engine for C++. Recognises the entire class of regular languages.

Compilation

    cd build
    cmake ..
    make

Usage

    #include "include/Regex/regex.h"

    Regex r;
    r.parse("(ab|c*)*");
    std::cout << r.matches("ababababccababab");