How to convert a "YYYY-MM-ddThh:mm:ss.sssZ" format string to Date?
Hi all,
in a data transform I've this string "2019-01-19T03:00:00.000Z" and I want to set it in a date property.
If I set it with no convertion I've got error.
If I use @FormatDateTime("2019-01-19T03:00:00.000Z", "YYYY-MM-ddThh:mm:ss.sssZ", null, null) the result is 19700101.
My expected result is 20190101, how can I obtain this?
Thanks in advance.
***Edited by Moderator: Lochan to update platform capability tags***