Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Function template replace_regex

boost::algorithm::replace_regex — Replace regex algorithm.

Synopsis

// In header: <boost/algorithm/string/regex.hpp>


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

Search for a substring matching given regex and format it with the specified format. The input string is modified in-place.

Parameters:

Flags

Regex options

Format

Regex format definition

Input

An input string

Rx

A regular expression


PrevUpHomeNext