1
votes

I have a timestamp type, like x = 2020.01.24, how to covert it to format in "24-01-2020" in DolphinDB? Currently I have to use string manipulation.

1

1 Answers

1
votes

Please use format function to format the date.

x= 2020.01.24
format(x, "dd-MM-yyyy")