C++字符串中空格替换问题,求指教!在线等,谢谢!

这个是题目描述。... 这个是题目描述。 展开
 我来答
ljan69
2015-10-17 · 超过16用户采纳过TA的回答
知道答主
回答量:91
采纳率:0%
帮助的人:33.8万
展开全部
c++ 的CString类型自带replace方法啊,str.replace(" ","%02"),你可以把string换成CString再去替换
愚夫噬血
推荐于2016-10-28 · 超过82用户采纳过TA的回答
知道小有建树答主
回答量:159
采纳率:0%
帮助的人:135万
展开全部
#include <iostream>
#include <string>
using namespace std;

string replace(string str)
{
const char *str1=str.data();
string temp;
int nr=str.size();
int i=0;
while(nr)
{
if(str[i]!=' ')
{
temp+=str[i];
}
else
{
temp+="%20";
}
nr--;

i++;
}
return temp;
}
void main()
{

string str;
string result;
getline(cin,str);
cout<<str<<endl;
result=replace(str);
cout<<"result="<<result<<endl;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式