📅  最后修改于: 2022-03-11 14:56:14.389000             🧑  作者: Mango
代码示例2
p = re.compile( ... )
m = p.match( 'string goes here' )
if m:
print('Match found: ', m.group())
else:
print('No match')