码迷,mamicode.com
首页 > 编程语言 > 详细

[C++]_[获取Utf8字符串的字符个数和获取n个连续字符]

时间:2014-07-26 02:38:16      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:c++   utf8   字符串个数   连续字符串   指定位置   


场景:

1.有时候需要统计utf8字符串的个数,单纯统计字节个数是不行的。

2.有时候也需要获取从某个位置开始的n个连续字符用于显示或计算。


static int GetUtf8LetterNumber(const char *s)
{
    int i = 0, j = 0;
    while (s[i])
    {
        if ((s[i] & 0xc0) != 0x80) j++;
        i++;
    }
    return j;
}

static int GetUtf8Word(const char *s,int wantedNum,int& offset)
{
    int i = 0, j = 0;
    
    int readedNum = 0;
    int isReach = 0;
    while (s[i])
    {
        if ((s[i] & 0xc0) != 0x80)
        {
            if(isReach)
            {
                break;
            }
            ++j;
            readedNum = j;
            if(j == wantedNum)
            {
                isReach = 1;
            }
            
        }
        ++i;
    }
    offset = i;
    return readedNum;
}


[C++]_[获取Utf8字符串的字符个数和获取n个连续字符],布布扣,bubuko.com

[C++]_[获取Utf8字符串的字符个数和获取n个连续字符]

标签:c++   utf8   字符串个数   连续字符串   指定位置   

原文地址:http://blog.csdn.net/infoworld/article/details/38119229

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!