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

Function replace_all_regex

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

Source from the content-addressed store, hash-verified

228 typename RegexTraitsT,
229 typename FormatStringTraitsT, typename FormatStringAllocatorT >
230 inline void replace_all_regex(
231 SequenceT& Input,
232 const basic_regex<CharT, RegexTraitsT>& Rx,
233 const std::basic_string<CharT, FormatStringTraitsT, FormatStringAllocatorT>& Format,
234 match_flag_type Flags=match_default | format_default )
235 {
236 ::boost::algorithm::find_format_all(
237 Input,
238 ::boost::algorithm::regex_finder( Rx, Flags ),
239 ::boost::algorithm::regex_formatter( Format, Flags ) );
240 }
241
242// erase_regex --------------------------------------------------------------------//
243

Callers

nothing calls this directly

Calls 3

find_format_allFunction · 0.85
regex_finderFunction · 0.85
regex_formatterFunction · 0.85

Tested by

no test coverage detected