头文件
#include <algorithm>
例子
下面的代码, 将字符串中的 /替换为\
std::string str("C:/demo/log/head/send");
std::replace(str.begin(), str.end(), '/', '\\');
#include <algorithm>
下面的代码, 将字符串中的 /替换为\
std::string str("C:/demo/log/head/send");
std::replace(str.begin(), str.end(), '/', '\\');