I Want to Covert the String Variable Contain "09222023" to this Format 22.09.2023

Hi

Try with this expression

Stroutput = DateTime.ParseExact(Strinput.ToString.Trim,“ddMMyyyy”,System.Globalization.CultureInfo.InvariantCulture).ToString(“dd.MM.yyyy”)

Have a view on this for all Datetime conversion

Hope this helps

cheers
@Gopikrishna_S