I\'m working with a script that displays the date and time in ISO 8601 format like so: 2012-05-17T17:35:44.000Z.
2012-05-17T17:35:44.000Z
but I would like it to display in the n
Pretty sure just a parse and then output will give it to you in the format you want :
#parseDateTime(REReplace("2012-05-17T17:35:44.000Z", "(\d{4})-?(\d{2})-?(\d{2})T([\d:]+).*", "\1-\2-\3 \4"))#
Edit: Fixed and tested. ;)