如何判断 Python 文本是否为简体中文?
如何判断 python 文本是否为简体中文?
python 中存在多个方法来判断文本是否为简体中文,以下方法之一可以帮你解决这个问题:
import reimport langdetect# 使用正则表达式查找中文汉字cn = "([u4e00-u9fa5]+)"pattern_cn = re.compile(cn)# 使用 langdetect 库检测语言def is_simplified_chinese(text): try: return langdetect.detect(text) == 'zh-cn' except: return false
示例用例:
s = "谢谢"s1 = "谢谢"print(pattern_cn.findall(s1)) # 输出 ['谢谢']print(is_simplified_chinese(s)) # 输出 trueprint(is_simplified_chinese(s1)) # 输出 true
旁门左道的方法:
立即学习“Python免费学习笔记(深入)”;
对于繁杂的情况,还可以使用以下旁门左道的方法:
import langconvdef is_simplified_chinese(text): return langconv.Converter('zh-hans').convert(text) == text