I am struggling to get date/time values converted. The issue is that the time component contains fractional seconds, and there are additional characters in the string that should be filtered out.
The format is of the current data/time variable is:
2018-12-30T18:03:23.400Z
The result I am looking for is:
2018-12-30 18:03:23.4
I have tried reproducing from these stack overflow questions: Parse string with additional characters in format to Date and Convert a large character string to dates, but the dates have a non numeric character
But I haven't been able to get them to work.