string容器07之string字符串的插入与删除

2021-03-02 16:57:54 浏览数 (1)

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;
}

0 人点赞