首页 > 其他 > 详细

MFC-CString 字符串分割

时间:2014-03-28 20:52:00      阅读:472      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
CString strSrc = _T("1++2+3+4");
CStringArray strResult;

CString strGap = _T("+");
int nPos = strSrc.Find(strGap);

CString strLeft = _T("");
while(0 <= nPos)
{
    strLeft = strSrc.Left(nPos);
    if (!strLeft.IsEmpty())
        strResult.Add(strLeft);

    strSrc = strSrc.Right(strSrc.GetLength() - nPos - 1);
    nPos = strSrc.Find(strGap);
}

if (!strSrc.IsEmpty()) {
   strResult.Add(strSrc);
}

int nSize = strResult.GetSize();
for (int i = 0; i < nSize; i++)
{
    OutputDebugString(strResult.GetAt(i) + _T("\n"));
}
bubuko.com,布布扣

MFC-CString 字符串分割,布布扣,bubuko.com

MFC-CString 字符串分割

原文:http://www.cnblogs.com/xuejianhui/p/3629714.html

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