Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2022. The current version is 1.89.0.
boost::algorithm::regex_finder — "Regex" finder
// In header: <boost/algorithm/string/regex_find_format.hpp> 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 contains match results from the regex_search algorithm.
Parameters: |
|
||||
Returns: |
An instance of the |