How can I turn a date in the format: '2018-03-2​5T05:15:00​.000Z' in a datetime vector?

2 次查看(过去 30 天)
I'm currently working with an API that gives me a timestamp like this and I can't seem to convert it in a datetime value.
Any thoughts?
Thanks in advance!

采纳的回答

Peter Perkins
Peter Perkins 2018-4-6
The short answer is
>> datetime('2018-03-25T05:15:00.000Z','InputFormat','uuuu-MM-dd''T''HH:mm:ss.SSS''Z''')
ans =
datetime
25-Mar-2018 05:15:00
The longer answer is that you've got something funny going on in the text that you posted:
>> double('2018-03-25T05:15:00.000Z')
ans =
Columns 1 through 9
50 48 49 56 45 48 51 45 50
Columns 10 through 18
8203 53 84 48 53 58 49 53 58
Columns 19 through 26
48 48 8203 46 48 48 48 90
  2 个评论
Thomas Nguyen
Thomas Nguyen 2018-4-6
You guys are so quick on answering people's questions :p I'm just looking around for fun assignments to tackle but everything has been solved :<<
Fabio Barbosa
Fabio Barbosa 2018-4-6
Maybe this one? :P https://www.mathworks.com/matlabcentral/answers/393103-how-can-i-post-an-order-request-via-api

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Dates and Time 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by