python正则表达式问号的使用

2024年07月26日 正则表达式 Python51

1、声明与非贪心的匹配。

2、表示可选的分组。用星号匹配零次或多次、一次或多次用加号匹配、用花括号匹配特定次数、贪婪与非贪婪的匹配。

python正则表达式实例

import re
 
a = 'wxxIxxeuieiejfsdjxxlovexxfsiewiweirxxUxxwuerowiur'
b = re.findall('xx(.*?)xx', a)
print(b)
print(type(b))
 
for item in b:
print(item)

python正则表达式输出

['I', 'love', 'U']
<class 'list'>
I
love
U

以上就是python正则表达式问号的使用,希望对大家有所帮助。

本文链接:http://so.lmcjl.com/news/9190/

展开阅读全文