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