计算字符是否为中文 简单判断

Posted heyuchang666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算字符是否为中文 简单判断相关的知识,希望对你有一定的参考价值。


---计算字符是否为中文
---@param inputstr string
function StringUtil.isChineseCharacter(inputstr)
    -- 可以计算出字符宽度,用于显示使用
    local isChineseCharacter = true

    local lenInByte = #inputstr
    local i = 1
    while (i <= lenInByte)
    do
        local curByte = string.byte(inputstr, i)
        -- Logger.filter("StringUtil",i, lenInByte, curByte)
        local byteCount = 1;
        -- print("isChineseCharacter", i, curByte)
        if curByte > 0 and curByte <= 127 then
            isChineseCharacter = false
            byteCount = 1                                           --1字节字符
            break
        elseif curByte >= 192 and curByte <= 223 then
            byteCount = 2                                           --双字节字符
        elseif curByte >= 228 and curByte <= 233 then
            byteCount = 3                                           --汉字
        elseif curByte >= 240 and curByte <= 247 then
            byteCount = 4                                          --4字节字符
        else
            isChineseCharacter = false
            break
        end

        i = i + byteCount                                 -- 重置下一字节的索引
    end
    return isChineseCharacter
end

以上是关于计算字符是否为中文 简单判断的主要内容,如果未能解决你的问题,请参考以下文章

c语言中有没有比较简单的算法来判断两个集合有交集

python 判断是否为中文

python 判断是否为中文

判断字符串是不是是中文

freemarker判断字符串是不是为空

怎样判断一个字符是否汉字呢??