Home | Libraries | People | FAQ | More |
boost::xpressive::regex_match — See if a regex matches a sequence from beginning to end.
// In header: <boost/xpressive/regex_algorithms.hpp> template<typename BidiIter> bool regex_match(BidiIter begin, BidiIter end, match_results< BidiIter > & what, basic_regex< BidiIter > const & re, regex_constants::match_flag_type flags = regex_constants::match_default); template<typename BidiIter> bool regex_match(BidiIter begin, BidiIter end, basic_regex< BidiIter > const & re, regex_constants::match_flag_type flags = regex_constants::match_default); template<typename Char> bool regex_match(Char * begin, match_results< Char * > & what, basic_regex< Char * > const & re, regex_constants::match_flag_type flags = regex_constants::match_default); template<typename BidiRange, typename BidiIter> bool regex_match(BidiRange & rng, match_results< BidiIter > & what, basic_regex< BidiIter > const & re, regex_constants::match_flag_type flags = regex_constants::match_default, unspecified = 0); template<typename BidiRange, typename BidiIter> bool regex_match(BidiRange const & rng, match_results< BidiIter > & what, basic_regex< BidiIter > const & re, regex_constants::match_flag_type flags = regex_constants::match_default, unspecified = 0); template<typename Char> bool regex_match(Char * begin, basic_regex< Char * > const & re, regex_constants::match_flag_type flags = regex_constants::match_default); template<typename BidiRange, typename BidiIter> bool regex_match(BidiRange & rng, basic_regex< BidiIter > const & re, regex_constants::match_flag_type flags = regex_constants::match_default, unspecified = 0); template<typename BidiRange, typename BidiIter> bool regex_match(BidiRange const & rng, basic_regex< BidiIter > const & re, regex_constants::match_flag_type flags = regex_constants::match_default, unspecified = 0);
Determines whether there is an exact match between the regular expression re
, and all of the sequence [begin, end)
.
Parameters: |
|
||||||||||
Requires: |
Type
|
||||||||||
Returns: |
|
||||||||||
Throws: |
regex_error on stack exhaustion |