python 判断字符串中是否含有汉字或非汉字的实例
时间:2022-08-21 09:57:52|栏目:Python代码|点击: 次
model中compile值可以根据需要更改,满足不同的检测需求
#判断一段文本中是否包含简体中文 import re zhmodel = re.compile(u'[\u4e00-\u9fa5]') #检查中文 #zhmodel = re.compile(u'[^\u4e00-\u9fa5]') #检查非中文 contents = u'(2014)深南法民二初字第280号' match = zhmodel.search(contents) if match: print(contents) else: print(u'没有包含中文')
上一篇:pytorch中with torch.no_grad():的用法实例
栏 目:Python代码
下一篇:使用C#配合ArcGIS Engine进行地理信息系统开发
本文标题:python 判断字符串中是否含有汉字或非汉字的实例
本文地址:http://www.codeinn.net/misctech/211395.html