.*匹配所有字符
如果需要匹配特定字符串:’First Name:’+任意文本+‘Last Name:’+任意文本,就可以使用 .* 来匹配任意文本。其中 . 表示匹配单个字符,* 表示前面的字符匹配任意次数。
代码示例:
>>> import re
>>> testReg = repile(r'First Name: (.*) Last Name: (.*)')
>>> test = testReg.search('First Name: Jerry Last Name: Lee ')
>>> test.group(1)
'Jerry'
>>> test.group(2)
'Lee '
.*匹配所有字符
如果需要匹配特定字符串:’First Name:’+任意文本+‘Last Name:’+任意文本,就可以使用 .* 来匹配任意文本。其中 . 表示匹配单个字符,* 表示前面的字符匹配任意次数。
代码示例:
>>> import re
>>> testReg = repile(r'First Name: (.*) Last Name: (.*)')
>>> test = testReg.search('First Name: Jerry Last Name: Lee ')
>>> test.group(1)
'Jerry'
>>> test.group(2)
'Lee '
发布评论