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 an older version of Boost and was released in 2019. The current version is 1.89.0.
boost::unit_test::utils::replace_all_occurrences_of — This algorithm replaces all occurrences of a set of substrings by another substrings.
// In header: <boost/test/utils/algorithm.hpp> template<typename StringClass, typename ForwardIterator> StringClass replace_all_occurrences_of(StringClass str, ForwardIterator first1, ForwardIterator last1, ForwardIterator first2, ForwardIterator last2);
Parameters: |
|