Python 正则表达式(简略版)

2018-04-03  本文已影响10人  limit_lin
regex = re.compile(r'.*')
mo = regex.search('Some sentences')
mo.group() #group(1) group(2)匹配正则表达式分组信息
tup = mo.groups() #获取所有分组
strLst = regex.findall('Some sentences')
regex2 = re.compile('My Name IS LL',re.IGNORECASE)#匹配忽略大小写,等同于re.I
regex.sub('new words','raw strings') # new words 可以用\1,\2,\3表示在替换中输入分组中1、2、3的文本
re.VERBOSE 忽略正则表达式中的注释和空白符
re.compile('foo', re.IGNORECASE | re.DOTALL | re.VERBOSE)
上一篇 下一篇

猜你喜欢

热点阅读