Convert date with abbrev month to datetime

Hi, @Destiny_Malone

Fallow the steps below. If I helped you, please market it solved.

To convert a date with the abbreviated month to MM/dd/yyyy format in UiPath, use the following code:

DateTime.ParseExact(“Oct 14, 2024”, “MMM dd, yyyy”, System.Globalization.CultureInfo.InvariantCulture).ToString(“MM/dd/yyyy”)

This converts the string “Oct 14, 2024” to “10/14/2024”.