python 正则匹配中文字符

  正则匹配中文,固定形式:\u4E00-\u9FA5 

# -*- coding:utf-8 -*-

import re

'''
python 3.5版本
'''

words = 'study in 山海大学'
regex_str = ".*?([\u4E00-\u9FA5]+大学)"
match_obj = re.match(regex_str, words)
if match_obj:
    print(match_obj.group(1))


结果:山海大学

猜你喜欢

转载自blog.csdn.net/qq_34706955/article/details/81361625
今日推荐