hello friends,
how is possible to convert the date in the format “05-apr-17” in the format 05/04/2017?
Thank you so much,
cami
hello friends,
how is possible to convert the date in the format “05-apr-17” in the format 05/04/2017?
Thank you so much,
cami
Hi @CamiCat you can use datetime.ParseExact(“05-APR-17”,“dd-MMM-yy”,Nothing)
This will provide it in US format, so simple change the Nothing to UK Format
Hi @CamiCat
Try this code,
str_date = DateTime.ParseExact(“29- Aug-17”,“dd-MMM-yy”,Globalization.CultureInfo.InvariantCulture).ToString(“dd/MM/yyyy”)