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_range

boost::algorithm::replace_range — Replace range algorithm.

Synopsis

template<typename SequenceT, typename CollectionT> 
  void replace_range(SequenceT & Input, 
                     const iterator_range< typename iterator_of< SequenceT >::type > & SearchRange, 
                     const CollectionT & Format);

Description

Replace the given range in the input string. The input sequence is modified in-place.

Parameters

Format

A substitute string

Input

An input string

SearchRange

A range in the input to be substituted

Copyright © 2002-2004 Pavol Droba

PrevUpHomeNext