Cstring獲取第N個字符

void CTestaDlg::GetCStringItemAt(CString strin,CString & strout,int nindex)
{ 
    char* p=strin.GetBuffer(strin.GetLength()+1);
    int n=0;
    char r[4]={'\0'};
    while(*p)
    { 
        if(n==nindex)
        {//找到第index個字符,以p開始的字符串指針 
            if (*p>=0x80||*p<0)
            {
                memcpy(r,p,2);
                //temp=*p;
            }else{
                memcpy(r,p,1);
            } 
            strout=r; 
            return ;
        }
 
        if(*p>=0x80||*p<0)
        {
            p++;//過濾漢字半字節
        }
        n++;
        p++;
    }
}

 demo下載,請猛擊此處spa

相關文章
相關標籤/搜索