I need to convert ‘20210706’ - ‘06 jul 2021’
how to do this??
Hi @agathiyanv
Try this
Date.ParseExact("20210706", "yyyyMMdd", System.Globalization.CultureInfo.InvariantCulture).ToString("dd MMM yyyy")
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.