概述
消除多余空格
void CStringTestDlg::OnBnClickedOk()
{
CString str("i am a stu aa aa ddd s");
CString rlt = RemoveExtraSpace(str);
AfxMessageBox(rlt);
// TODO: Add your control notification handler code here
//OnOK();
}
CString CStringTestDlg::RemoveExtraSpace(CString str){
CString ret;
int i = 0;
bool lastChrIsSpace = false;
for(i = 0;i < str.GetLength() ;i ++){
if(str[i] == ' '){
if(lastChrIsSpace){
continue;
}
else{
ret.AppendChar(' ');
lastChrIsSpace = true;
}
}
else{
ret.AppendChar(str.GetAt(i));
lastChrIsSpace = false;
}
}
return ret;
}
最后
以上就是羞涩雪糕为你收集整理的C++ 字符串 处理 消除多余空格的全部内容,希望文章能够帮你解决C++ 字符串 处理 消除多余空格所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复