cpp_regexp 0.1.0

cpp std::regex
Documentation

cpp std::regex test only

use cpp_regexp::RegExp;
assert!(RegExp::new("^hello$").test("hello"));
let mut regex = RegExp::new("^hello$");
regex.icase = true;
assert!(regex.test("hellO"));