Function template replace_regex
boost::algorithm::replace_regex — Replace regex algorithm. 
 Synopsis
template<typename SequenceT, typename CharT, typename RegexTraitsT, 
         typename FormatStringTraitsT, typename FormatStringAllocatorT> 
  void replace_regex(SequenceT & Input, 
                     const basic_regex< CharT, RegexTraitsT > & Rx, 
                     const std::basic_string< CharT, FormatStringTraitsT, FormatStringAllocatorT > & Format, 
                     match_flag_type Flags = match_default|format_default);Description
Найдите подстроку, соответствующую данному регексу, и отформатируйте ее с указанным форматом. Входная строка изменена на месте.
| Параметры: | | <Flags> | Варианты регекса |  | <Format> | Определение формата Regex |  | <Input> | Вводная строка |  | <Rx> | Регулярное выражение | 
 |