尝试编写一个 RE 来识别 Python 中的日期格式 mm/dd
reg = "(((1[0-2])|(0?[1-9]))/((1[0-9])|(2[0-9])|(3[0-1])|(0?[0-9])))"
match = re.findall(reg, text, re.IGNORECASE)
print match
对于 text = '4/13' 它给了我
[('4/13', '4', '', '4', '13', '13', '', '', '')]
只需要第一个元素。我不想要不精确的匹配,我该如何删除它们。
谢谢,
程