std::string并没有提供类似repalceALL之类的方法,我们只能使用std::string::replace方法逐个替换子字符串。 封装的方法如下: std::string ReepalceAllString(std::string origin_str, const std::string& be_replaced_str, const std::string& new_replace_str) { std::string result_str = origin_str; for ...