C++ 计算字符创长度之Function(包含unicode,utf-8),包含特殊字符



//字符串长度

int calcCharCount(const char *pszText)

{

    int n = 0;

    char ch = 0;

    while ((ch = *pszText))

    {

        CC_BREAK_IF(! ch);

        

        if ((0x80 & ch) == 0x00) {

            n++;

        } else if (0x80 != (0xC0 & ch)) {

            n+=2;

        }

        ++pszText;

    }

    return n;

}




//包含特殊字符

bool checkSpecialCharacter(string text)

{

    char temp;

    for (int i =0; i <text.length(); i++) {

        temp = text[i];

        

        if ((temp >= 0 && temp <= 47) || (temp >= 58 && temp<= 64) || (temp >=91 && temp <= 96) || (temp >= 123 && temp <= 223 )) {

            CCLog("用户名称包含特殊字符");

            return true;

        }

    }

    return false;

}



郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。