c-string/c-string (1) | template <class traits, class charT> basic_string<charT> regex_replace (const charT* s, const basic_regex<charT,traits>& rgx, const charT* fmt, regex_constants::match_flag_type flags = regex_constants::match_default); |
---|
c-string/string (2) | template <class traits, class charT, class ST, class SA> basic_string<charT> regex_replace (const charT*s, const basic_regex<charT,traits>& rgx, const basic_string<charT,ST,SA>& fmt, regex_constants::match_flag_type flags = regex_constants::match_default); |
---|
string/c-string (3) | template <class traits, class charT, class ST, class SA> basic_string<charT,ST,SA> regex_replace (const basic_string<charT,ST,SA>& s, const basic_regex<charT,traits>& rgx, const charT* fmt, regex_constants::match_flag_type flags = regex_constants::match_default); |
---|
string/string (4) | template <class traits, class charT, class ST, class SA, class FST, class FSA> basic_string<charT,ST,SA> regex_replace (const basic_string<charT,ST,SA>& s, const basic_regex<charT,traits>& rgx, const basic_string<charT,FST,FSA>& fmt, regex_constants::match_flag_type flags = regex_constants::match_default); |
---|
range/c-string (5) | template <class OutputIterator, class BidirectionalIterator, class traits, class charT> OutputIterator regex_replace (OutputIterator out, BidirectionalIterator first, BidirectionalIterator last, const basic_regex<charT,traits>& rgx, const charT* fmt, regex_constants::match_flag_type flags = regex_constants::match_default); |
---|
range/string (6) | template <class OutputIterator, class BidirectionalIterator, class traits, class charT, class ST, class SA> OutputIterator regex_replace (OutputIterator out, BidirectionalIterator first, BidirectionalIterator last, const basic_regex<charT,traits>& rgx, const basic_string<charT,ST,SA>& fmt, regex_constants::match_flag_type flags = regex_constants::match_default); |
---|