Section

std::match_results

The class template std::match_results holds a collection of character sequences that represent the result of a regular expression match.

# Declarations

template<
class BidirIt,
class Alloc = std::allocator<std::sub_match<BidirIt>>
> class match_results;

(since C++11)

namespace pmr {
template <class BidirIt>
using match_results = std::match_results<BidirIt,
std::pmr::polymorphic_allocator<
std::sub_match<BidirIt>>>;
}

(since C++17)