B 救救企鹅 字符替换

把一种字符串替换成另一种,STL类型的题

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int main()
 4 {
 5     string S,T,P;
 6     cin>>S>>T>>P;
 7     int len=T.size();
 8     while(1){
 9         int pos=S.find(T);
10         if(pos==-1) break;
11         S.replace(pos,len,P);
12     }
13     cout<<S<<endl;
14     return 0;
15 }

 

posted @ 2020-08-05 20:07  古比  阅读(113)  评论(0编辑  收藏  举报