The application receives dates from an external source in the format "dd MMM yyyy". For example, "12 MAY 1920".
When converting a date
an error occurs due to the fact that the month name must be "May".
What can be done to make the process case-insensitive?
When converting a date
B4X:
DateTime.DateFormat="dd MMM yyyy"
Log(DateTime.DateTimeParse(DateTime.Date("12 MAY 1920"),"02:00:00"))
What can be done to make the process case-insensitive?