Check if Extracted date is in specific format

Hi!

Give a try with

IsValidDate = DateTime.TryParseExact("12/19/2024 7:28:07", "MM/dd/yyyy HH:mm:ss", System.Globalization.CultureInfo.InvariantCulture, System.Globalization.DateTimeStyles.None, Nothing)

Regards!