码迷,mamicode.com
首页 > 其他好文 > 详细

string的插入和删除

时间:2020-01-18 10:40:07      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:ras   npos   article   end   cpp   const   ref   字符串   插入字符串   

string的插入和删除

参考:string插入和删除

插入(字符串和字符):

string& insert(int pos, const char* s);         //插入字符串
string& insert(int pos, const string& str);     //插入字符串
string& insert(int pos, int n, char c);         //在指定位置插入n个字符c
string s="12345";
s.insert(2,"000");
cout<<s<<endl;
输出:
12000345

删除:

string& erase(int pos, int n = npos);           //删除从Pos开始的n个字符
string s="12345";
s.erase(2,2);
cout<<s<<endl;
输出:
125

string的插入和删除

标签:ras   npos   article   end   cpp   const   ref   字符串   插入字符串   

原文地址:https://www.cnblogs.com/CADCADCAD/p/12208166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!