回覆列表
  • 1 # 使用者7305050034042

    下邊這段程式碼是計算一個字串的字元個數的,注意不是字串長度,自己改吧,很簡單

    int StringCountCharsA(CHAR *szTarget)

    {

    int nCount = 0,nCorsor = 0;

    byte btChar;

    btChar = *(byte*)szTarget;

    while(0x00 != btChar)

    {

    nCount ++;

    if(::IsDBCSLeadByte(btChar))

    {

    nCorsor += 2;

    }else

    {

    nCorsor += 1;

    }

    btChar = *(byte*)(szTarget+nCorsor);

    }

    return nCount;

    }

  • 中秋節和大豐收的關聯?
  • 暑假兼職你踩過多少雷?