hello all ,
I want to convert " 10.13.2020" to 13 Oct 2020 currently 10.13.2020 is in string format
kindly help
hello all ,
I want to convert " 10.13.2020" to 13 Oct 2020 currently 10.13.2020 is in string format
kindly help
Hi,
Can you try the following expression?
System.DateTime.Parse(yourString).ToString("dd MMM yyyy")
Regards,
Thank you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.