std::sub_match (3) - Linux Manuals
std::sub_match: std::sub_match
NAME
std::sub_match - std::sub_match
Synopsis
Defined in header <regex>
template<
class BidirIt (since C++11)
> class sub_match;
The class template sub_match is used by the regular expression engine to denote sequences of characters matched by marked sub-expressions. A match is a [begin, end) pair within the target range matched by the regular expression, but with additional observer functions to enhance code clarity.
Only the default constructor is publicly accessible. Instances of sub_match are normally constructed and populated as a part of a std::match_results container during the processing of one of the regex algorithms.
The member functions return defined default values unless the matched member is true.
sub_match inherits from std::pair<BidirIt, BidirIt>, although it cannot be treated as a std::pair object because member functions such as swap and assignment will not work as expected.
Type requirements
-
BidirIt must meet the requirements of LegacyBidirectionalIterator.
Specializations
Several specializations for common character sequence types are provided:
Defined in header <regex>
Type Definition
csub_match sub_match<const char*>
wcsub_match sub_match<const wchar_t*>
ssub_match sub_match<std::string::const_iterator>
wssub_match sub_match<std::wstring::const_iterator>
Member types
Member type Definition
iterator BidirIt
value_type std::iterator_traits<BidirIt>::value_type
difference_type std::iterator_traits<BidirIt>::difference_type
string_type std::basic_string<value_type>
Member objects
bool matched (public member object)
Inherited from std::pair
BidirIt first (public member object)
BidirIt second (public member object)
Member functions
constructor (public member function)
Observers
length (public member function)
str (public member function)
operator_string_type
compare (public member function)
Non-member functions
operator==
operator!= compares two sub_match objects
operator< (function template)
operator<=
operator>
operator>=
operator<< (function template)
See also
regex_token_iterator iterates through regex submatches
(C++11)