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 for the latest Boost documentation.
PrevUpHomeNext

Function template replace_all

boost::algorithm::replace_all — Replace all algorithm.

Synopsis

template<typename SequenceT, typename Collection1T, typename Collection2T> 
  void replace_all(SequenceT & Input, const Collection1T & Search, 
                   const Collection2T & Format);

Description

Replace all occurrences of the search string in the input with the format string. The input sequence is modified in-place.

Parameters

Format

A substitute string

Input

An input string

Search

A substring to be searched for

Returns: A reference to the modified input

Copyright © 2002-2004 Pavol Droba

PrevUpHomeNext