| 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 | /*! |
nothing calls this directly
no test coverage detected