C++ string 替换子串

吾生也有涯,而知也无涯。这篇文章主要讲述C++ string 替换子串相关的知识,希望能为你提供帮助。
代码:

#include < iostream>
#include < windows.h>
#include < string>

using namespace std;

int main()

string s = "abc123def";
s.replace(
s.find("123"),// 被替换的位置
3,// 被替换的大小
""// 用来取代该位置的字符串
);
cout < < s < < endl;

return 0;

效果图:




【C++ string 替换子串】


    推荐阅读