Quick silly question...
I am trying to create a pattern to match the following type of string '12/06/06 08:15'.
I tried r'/d{1-2}///d{1-2}///d{1-2} /d{1-2}:/d{1-2}' and '/d{1-2}///d{1-2}///d{1-2} /d{1-2}:/d{1-2}' but obviously it doesnt work... Can anyone give me a leg up?