I have strings like this:
3/11/2014
3 January 2014
3rd 11 2014
3th January 2014
Is there any posiblity that I can make a date variable from those strings?
I know that
i can make a date variable from string with format like this:
datetime.strptime("3-11-2014","%d-%m-%Y").date()
my problem
the format of the date is unknown
so onetime it is 3/11/2014
, another time it is 3-11-2014
, another time it is 3th janary 2014