正则表达式——分组

前端之家收集整理的这篇文章主要介绍了正则表达式——分组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

( )

在正则表达式中,匹配字符时候,若有用括号分组的情况,则findall函数会优先返回分组中匹配的内容,如一下代码显示

#!/usr/bin/python
#coding:utf8

import re

res = r"(hello) world"
res1 = r"(hello|hi) world"
res2 = r"hello world"
s = "hello world hi world"

print re.findall(res,s) #显示hello
print "#"*20
print re.findall(res1,s) #显示hello或者hi
print "#"*20
print re.findall(res2,s) #显示 hello world
$ python e8.py 
['hello']
####################
['hello','hi']
####################
['hello world']
原文链接:https://www.f2er.com/regex/359844.html

猜你在找的正则表达式相关文章