python如何判断中文

55次阅读
没有评论

共计 369 个字符,预计需要花费 1 分钟才能阅读完成。

要判断一个字符串是否为中文,可以使用正则表达式来匹配中文字符。例如,使用 re 模块的 search 函数来判断字符串是否包含中文字符。

import re

def is_chinese(string):
    pattern = re.compile('[\u4e00-\u9fa5]')
    match = pattern.search(string)
    if match:
        return True
    else:
        return False

# 示例用法
print(is_chinese("Hello, 你好 "))  # True
print(is_chinese("Hello World"))  # False

上述代码中,通过使用正则表达式 [\u4e00-\u9fa5] 来匹配中文字符。如果字符串中包含任何一个中文字符,则返回 True,否则返回 False。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-02-05发表,共计369字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)