Home | Libraries | People | FAQ | More |
boost::algorithm::regex_finder — "Regex" finder
template<typename CharT, typename RegexTraitsT> unspecified regex_finder(const basic_regex< CharT, RegexTraitsT > & Rx, match_flag_type MatchFlags = match_default);
Construct the regex_finder
. Finder uses the regex engine to search for a match. Result is given in regex_search_result
. This is an extension of the iterator_range. In addition it containes match results from the regex_search
algorithm.
Parameters
Regex search options
A regular expression
Returns:
An instance of the regex_finder
object
Copyright © 2002-2004 Pavol Droba |