Unparseable Date

0
Hey All,  I have a date returned from client as  string like this: ‘14-Oct-19’ I tried parse date time function : parseDateTime('14-Oct-19','dd-MM-yy') but got the error: Unparseable date: "14-Oct-19" Any Ideas? how to change it to a date time?
asked
1 answers
1

In your original question you have parseDateTime('14-Oct-19','dd-MM-yy')

You have 2 Ms rather than 3.  That would break it.

answered