cpp > C++ 11 Regex Search
Testing C++ 11 regex_search function
Image on regexpress/cpp
properties
-
* string regexRegular expression.
-
list syntax_typeGrammer of regex. These member constants are aliases of the homonym constants under the std::regex_constants namespace.
-
boolean icaseRegular expressions match without regard to case.
-
boolean nosubsThe match_results structure will not contain sub-expression matches.
-
boolean optimizeMatching efficiency is preferred over efficiency constructing regex objects.
-
boolean collateCharacter ranges, like "[a-b]", are affected by locale.
-
boolean match_not_bolThe first character is not considered a beginning of line ("^" does not match).
-
boolean match_not_eolThe last character is not considered an end of line ("$" does not match).
-
boolean match_not_bowThe escape sequence "\b" does not match as a beginning-of-word.
-
boolean match_not_eowThe escape sequence "\b" does not match as an end-of-word.
-
boolean match_anyAny match is acceptable if more than one match is possible.
-
boolean match_not_nullEmpty sequences do not match.
-
boolean match_continuousThe expression must match a sub-sequence that begins at the first character. Sub-sequences must begin at the first character to match.
-
boolean match_prev_availOne or more characters exist before the first one. (match_not_bol and match_not_bow are ignored)