std::string& replace(size_t pos, size_t count, const std::string& str); 复制代码 这个函数用于将从位置pos开始的count个字符替换为字符串str。replace函数会返回一个引用,指向被修改后的std::string对象。 例如,假设有一个字符串str为"Hello, world!“,我们想要将其中的"world"替换为"everyone”,可以这...