我是靠谱客的博主 羞涩雪糕,最近开发中收集的这篇文章主要介绍C++ 字符串 处理 消除多余空格,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

消除多余空格
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++ 字符串 处理 消除多余空格所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部