编程语言
首页 > 编程语言> > python判断字符串中是否包含中文

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

作者:互联网

判断一段文本中是否包含简体中文
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'没有包含中文')

 

标签:u4e00,中文,python,print,re,zhmodel,字符串,contents
来源: https://www.cnblogs.com/lxz123/p/15308235.html