MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / replace_regex

Function replace_regex

include/win/boost/algorithm/string/regex.hpp:144–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142 typename RegexTraitsT,
143 typename FormatStringTraitsT, typename FormatStringAllocatorT >
144 inline void replace_regex(
145 SequenceT& Input,
146 const basic_regex<CharT, RegexTraitsT>& Rx,
147 const std::basic_string<CharT, FormatStringTraitsT, FormatStringAllocatorT>& Format,
148 match_flag_type Flags=match_default | format_default )
149 {
150 ::boost::algorithm::find_format(
151 Input,
152 ::boost::algorithm::regex_finder( Rx, Flags ),
153 ::boost::algorithm::regex_formatter( Format, Flags ) );
154 }
155
156// replace_all_regex --------------------------------------------------------------------//
157

Callers

nothing calls this directly

Calls 3

find_formatFunction · 0.85
regex_finderFunction · 0.85
regex_formatterFunction · 0.85

Tested by

no test coverage detected