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

字符串-02. 删除字符串中的子串(20)

时间:2014-07-02 17:17:29      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   os   

 1 #include<iostream>
 2 #include<string>
 3 using namespace std;
 4 int main(){
 5     string s1, s2;
 6     getline(cin, s1);
 7     getline(cin, s2);
 8     while(s1.find(s2)!=string::npos){
 9         s1.erase(s1.find(s2),s2.length());
10     }
11     cout<<s1<<endl;
12     return 0;
13 }

参考:

  C++中string中的erase函数怎么使用

字符串-02. 删除字符串中的子串(20),布布扣,bubuko.com

字符串-02. 删除字符串中的子串(20)

标签:style   blog   http   color   使用   os   

原文地址:http://www.cnblogs.com/gnodidux/p/3820014.html

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