datetime in format - yyyymmddhhmmss
I receive dateTime in this format - yyyy-mm-ddThh:mm:ss+01:00
for ex : 2024-05-31T17:33:08+01:00
I wanted it to convert to yyyymmddhhmmss
desired output = 20240531173308
I receive dateTime in this format - yyyy-mm-ddThh:mm:ss+01:00
for ex : 2024-05-31T17:33:08+01:00
I wanted it to convert to yyyymmddhhmmss
desired output = 20240531173308
If you just want a very basic conversion (i.e. not converting to a canonical date type first), then this will work
Many Thanks , its working
Another way
WRITE $ZSTRIP($ZDATETIME($HOROLOG, 8), "*P")