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

    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]

沒有留言:

張貼留言

(什麼是留言欄訊息?)