How to Convert this string to date type

Hi @Gopikrishna_S

Try this below expression
DateTime.ParseExact(“Input string”,(“ddMMyyyy”),Globalization.CultureInfo.InvariantCulture).ToString(“ddMMyyyy”)

ddMMyyyy - Your conversion format.

For more info refer the post

Hope it will works

Regards
Gokul

2 Likes