摘要:
# -*- coding:utf-8 -*- import re '''python 3.5版本 正则匹配中文,固定形式:\u4E00-\u9FA5 ''' words = 'study in 山海大学' regex_str = ".*?([\u4E00-\u9FA5]+大学)" match_obj = re.match(regex_str, words) if match_obj: ... 阅读全文
posted @ 2017-10-08 11:08
言守中
阅读(37125)
评论(0)
推荐(0)

浙公网安备 33010602011771号