Skip to content

Latest commit

 

History

History
45 lines (24 loc) · 915 Bytes

README.md

File metadata and controls

45 lines (24 loc) · 915 Bytes

jregex

A C++ Regular Expression Library

Author: Huang Jiahua

Features

  • 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.

Documentation

The documentation file is in this repository.

Building

This project supports CMake out of the box.

Quick start:

mkdir build
cd build
cmake..

Please see the 'CMakeList.txt'.

Repository Contents

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