标签: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 }
参考:
字符串-02. 删除字符串中的子串(20),布布扣,bubuko.com
标签:style blog http color 使用 os
原文地址:http://www.cnblogs.com/gnodidux/p/3820014.html