📅  最后修改于: 2023-12-03 14:39:53.216000             🧑  作者: Mango
C++中的string类是一种非常常用的字符串类型。string类中有很多实用的方法,其中一个非常常用的方法是insert()函数。insert()函数可在一个string对象中的任意位置插入另一个字符串。这个函数是一个很有用的工具,能方便的操作字符串。
string.insert(position, str)
该函数无返回值,但会修改已有的string对象。
以下代码演示了使用insert()函数来在字符串中插入一个子串。
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "hello world!";
str.insert(6, "beautiful ");
cout << str << endl;
return 0;
}
输出结果为:
hello beautiful world!