正则_用点 星 匹配所有字符
作者:
测试媛617 | 来源:发表于
2018-08-21 15:18 被阅读0次import re
nameRegex = re.compile(r'First Name:(.*) Last Name:(.*)')
mo = nameRegex.search('First Name:Al Last Name:Sweigart')
print(mo.group(1))
print(mo.group(2))
# 非贪心模式匹配所有文本
nong = re.compile(r'<.*?>')
mo1 = nong.search('<to server man> for dinner.>')
print(mo1.group())
# 贪心模式匹配所有文本
greedy = re.compile(r'<.*>')
mo2 = greedy.search('<to server man> for dinner.>')
print(mo2.group())
结果是:
Al
Sweigart
<to server man>
<to server man> for dinner.>
本文标题:正则_用点 星 匹配所有字符
本文链接:https://www.haomeiwen.com/subject/mihjiftx.html
网友评论