How to convert string to date

hello all ,

I want to convert " 10.13.2020" to 13 Oct 2020 currently 10.13.2020 is in string format

kindly help

1 Like

Hi,

Can you try the following expression?

System.DateTime.Parse(yourString).ToString("dd MMM yyyy")

Regards,

2 Likes

Thank you

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.