编写函数,接受三个string参数,s,oldVal,newVal.使用迭代器和erase和insert函数,将所有oldVal替换为newVal
C++Primer练习题9.4.3#include#includeusingnamespacestd;voidreplace_function(string&s,conststring&oldVal,conststring&newVal){//采用引用的形式,节约复杂度.除了s以外,其余两个应该为常量引用,不能更改intlen1=oldVal.size();string::iteratorb=s.