1 2 3 4 5 6 7 8 9 10 11 12 13
# cpp_regexp cpp std::regex test only ```rust use cpp_regexp::RegExp; assert!(RegExp::new("^hello$").test("hello")); let mut regex = RegExp::new("^hello$"); regex.icase = true; assert!(regex.test("hellO")); ``` License: MIT OR Apache-2.0