boost::algorithm::erase_all — Erase all algorithm.
// In header: <boost/algorithm/string/erase.hpp> template<typename SequenceT, typename RangeT> void erase_all(SequenceT & Input, const RangeT & Search);
Remove all the occurrences of the string from the input. The input sequence is modified in-place.
Parameters:
Input
An input string
Search
A substring to be searched for.