Hi everyone,
I have a date in format dd-MMM-yy and I want to change it into dd.MM.yyyy.
I used this expression —DateTime.ParseExact(variable, “dd-MMM-yy”, System.Globalization.CultureInfo.InvariantCulture).ToString(“dd.MM.yyyy”)— and it works but sometimes the Month comes in Spanish like this “19-ene-24” and the system date is in English, so it throws and error at the assign activity.
How can I solve that ?? The input date is always in Spanish