關鍵字,字串搜尋MFC的CString實作

  1. 關鍵字,字串搜尋MFC的CString實作

關鍵字,字串搜尋MFC的CString實作

原文連結: https://darkblack01.blogspot.com/2013/03/mfccstring.html
移植時的最後更新日期: 2013-03-27T14:24:13.261+08:00

    CString str("白色  9點_離邊: 1/6");
CString totalString;
CString strColor, strPointNo, strFE;

CString strErr;
strErr.Format("%d (str.Find(\"黃色\"))", str.Find("黃色"));

CString strTest;
strColor.Format("%s", str.Mid(str.Find("白"), 2));

strPointNo.Format("%s", str.Mid(str.Find("9"), 1));

strFE.Format("%s", str.Mid(str.Find("1/6"), 3));

strTest.Format("%s", strFE.Right(strFE.Find("/")));

totalString.Format("[%s][%s][%s][%s][%s][%s]", str, strColor, strPointNo, strFE, strErr, strTest);
[白色  9點_離邊: 1/6][白][9][1/6][-1  (str.Find("黃色"))][6]