#include <string>
#include <algorithm>
std::string str = "afafas";
std::replace(str.begin(), str.end(), 'a', '1');
本文共 165 字,大约阅读时间需要 1 分钟。
#include <string>
#include <algorithm>
std::string str = "afafas";
std::replace(str.begin(), str.end(), 'a', '1');
转载于:https://www.cnblogs.com/streams/p/5813988.html