std::regex_search (3) Linux Manual Page
std::regex_search – std::regex_search Synopsis Defined in header<regex> template <class BidirIt, class Alloc, class CharT, class Traits> bool regex_search(BidirIt first, BidirIt last, std::match_results<BidirIt, Alloc> &m, (1)(since C++ 11) const std::basic_regex<CharT, Traits> &e, std::regex_constants::match_flag_type flags = std::regex_constants::match_default); template <class CharT, class Alloc, class Traits> bool regex_search(const CharT *str, std::match_results<const CharT *, Alloc> &m, (2)(since C++ 11) const…
