I have huge excel datatable of 3000 rows. First Column in Excel has a date in a format (fri, 04/10/2019). I gotta format this so that column date values are shown like this (4.10.2019).
Best thing is i have done this already before with datetime.parseexact, but cannot figure out how it was written!
Yourstring=Yourstring.replace(“,”,“.”)
Yourstring=Yourstring.replace(“/”,“.”)
Then use if to see if you first char is 0
If True
Yourstring=Yourstring.replace(“0”,“”)