How can we convert unix timestamp to date (dd mon yyyy) for example unix timestamp. = 572486400 and i want to convert it to 22 Feb 1988?
Convert epoch time to standard date in (dd mon yyyy) or (yyyy-mm-dd)
Product version: IRIS 2023.1
Convert epoch time to standard date in (dd mon yyyy) or (yyyy-mm-dd)
Use $zdth to convert unixtime into horolog and then $zdate to convert it to date string:
write $zd($zdth(572486400, -2),3) 1988-02-22
Thanks @Eduard Lebedyuk
This has resolved my issue.