首页 > 编程语言 > 详细

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

时间:2020-06-07 00:50:10      阅读:168      评论:0      收藏:0      [点我收藏+]

一、摘要

使用 xlrd 模块打开带中文的excel文件时,会报错。

FileNotFoundError: [Errno 2] No such file or directory: ‘xx.xlsx‘

 

这个时候,就需要检测文件名,是否包含中文,及时return。

 

二、原理

中文字符的编码范围是:

\u4e00 - \u9fff

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

 

三、函数

def is_chinese(self, string):
    """
    检查整个字符串是否包含中文
    :param string: 需要检查的字符串
    :return: bool
    """
    for ch in string:
        if u\u4e00 <= ch <= u\u9fff:
            return True

    return True

 

转自:https://www.cnblogs.com/xiao987334176/p/11239982.html

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

原文:https://www.cnblogs.com/tjp40922/p/13057704.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!