RegEx 或正则表达式是形成搜索模式的字符序列。
RegEx 可用于检查字符串是否包含指定的搜索模式。
Python 提供名为 re 的内置包,可用于处理正则表达式。
导入 re 模块:
#引入 正则 import re text='china is a great country' x=re.search('^china.*country$',text)#<re.Match object; span=(0, 24), match='china is a great country'> print(x) if (x): print('YES,this is at least on meatch')#YES,this is at least on meatch else: print('NO MEACH')