首页 > 代码库 > careercup-1.4
careercup-1.4
1.4 编写一个方法,将字符串中的空格全部替换为“%20“。假定该字符串尾部有足够的空间存放新增字符,并且知道字符串的”真实“长度。
C++实现代码:
#include<iostream>#include<string>#include<cctype>using namespace std;string replacespace(string str){ if(str.empty()) return ""; int i; int len=str.length(); string res; for(i=0;i<len;i++) { if(isspace(str[i])) res+="%20"; else res+=str[i]; } return res;}int main(){ string str="We are Happy"; cout<<replacespace(str)<<endl;}
careercup-1.4
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。