string字符串的插入与删除
代码语言:javascript
复制#include<iostream>
using namespace std;
//string字符串的插入与删除
void test()
{
string s("dlikely");
//插入:insert
s.insert(1, "hy ");
cout << s << endl;
//删除:erase
s.erase(3, 1);
cout << s << endl;
}
int main()
{
test();
system("pause");
return 0;
}