您现在的位置是:课程教程文章

python判断字符串是否包含中文

2023-12-18 23:00课程教程文章 人已围观

原理:

中文字符的编码范围是:

\u4e00 - \u9fff

只要编码在此范围就可判断为中文字符

以下代码Python2下测试有效

判断字符串中是否包含中文

def is_contain_chinese(check_str):
    """
    判断字符串中是否包含中文
    :param check_str: {str} 需要检测的字符串
    :return: {bool} 包含返回True, 不包含返回False
    """
    for ch in check_str:
        if u'\u4e00' <= ch <= u'\u9fff':
            return True
    return False

整个字符串都是中文

def is_chinese(string):
    """
    检查整个字符串是否为中文
    Args:
        string (str): 需要检查的字符串,包含空格也是False
    Return
        bool
    """
    for chart in string:
        if chart < u'\u4e00' or chart > u'\u9fff':
            return False

    return True
课程教程:python判断字符串是否包含中文

上一篇:python pep是什么

下一篇:没有了

站点信息

  • 文章统计篇文章