c++ string怎么替换某字符为其他字符

avatar
作者
猴君
阅读量:0

要替换C++中的字符串中的某个字符为另一个字符,可以使用std::replace函数。

以下是一个简单的示例代码:

#include <iostream> #include <string> #include <algorithm>  int main() {     std::string str = "Hello, World!";          // 将字符串中的逗号(,)替换为感叹号(!)     std::replace(str.begin(), str.end(), ',', '!');      std::cout << str << std::endl;      return 0; } 

在上面的示例中,我们使用std::replace函数将字符串str中的逗号,替换为感叹号!。您可以根据需要替换任何字符。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!