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

Function replace_regex_copy

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

Source from the content-addressed store, hash-verified

92 typename RegexTraitsT,
93 typename FormatStringTraitsT, typename FormatStringAllocatorT >
94 inline OutputIteratorT replace_regex_copy(
95 OutputIteratorT Output,
96 const RangeT& Input,
97 const basic_regex<CharT, RegexTraitsT>& Rx,
98 const std::basic_string<CharT, FormatStringTraitsT, FormatStringAllocatorT>& Format,
99 match_flag_type Flags=match_default | format_default )
100 {
101 return ::boost::algorithm::find_format_copy(
102 Output,
103 Input,
104 ::boost::algorithm::regex_finder( Rx, Flags ),
105 ::boost::algorithm::regex_formatter( Format, Flags ) );
106 }
107
108 //! Replace regex algorithm
109 /*!

Callers

nothing calls this directly

Calls 3

find_format_copyFunction · 0.85
regex_finderFunction · 0.85
regex_formatterFunction · 0.85

Tested by

no test coverage detected