首页 > 其他 > 详细

字符串替换(find函数和replace函数)

时间:2016-10-02 22:00:34      阅读:286      评论:0      收藏:0      [点我收藏+]

#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
while(true)
{
getline(cin, str);
if(cin.eof()) break;
int index;
while(true)
{
index = str.find("you");
if(index == string::npos) break;
str.replace(index, 3, "we", 2);
}
cout<<str<<endl;
}
return 0;
}

字符串替换(find函数和replace函数)

原文:http://www.cnblogs.com/cwenliu/p/5928117.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!