今天有个需求,需要把字符串里的时间匹配出来,上网搜了下,找到这个解决方案,利用正则表达式匹配字符串中的日期和时间。
代码如下python用正则表达式匹配字符串里的日期:
pattern = re.compile(r'\b\d{2}/\d{2}/\d{4}\b|\b\d{1}:\d{2}\b|\b\d{2}:\d{2}\b')#定义匹配模式 string = 'The Yellow Door is open today for your convenience from 10 am till 5:45 pm. 7/10/2017' print re.findall(pattern,string) >>['5:45', '7/10/2017']
上边定义的模式仅能够匹配 日/月/年的日期、5:10和10:10格式的时间,需要其他匹配格式可以在pattern里边直接修改。’ | ‘是分隔匹配格式的。
有空可以看看我的其他文章: