Pythonで日付形式mm/ddを認識するREを書き込もうとしています
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', '4', '', '13', '13', '', '', '')]
だがしかし
'4/13'
ありがとう、チェン