# -*- 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: print(match_obj.group(1))
結果:山海大學
# -*- 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: print(match_obj.group(1))
結果:山海大學
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。