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