Reg20190322查找完整日期时间字段

Reg20190322查找完整日期时间字段_第1张图片
图片发自App
#coding=utf-8
#提取完整的年月日时间字段

import re

s = """se234 1987-02-09 07:30:00
1987-02-10 07:25:00"""

content = re.findall(r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}",s,re.M)
 
print(s)

print(content) 

疑问:re.M
答案:匹配多行,因为给出的字符串有两行。

另外:re.l 忽视大小写

你可能感兴趣的:(Reg20190322查找完整日期时间字段)