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