datetime format '2018-08-0​1T20:05:00​.000Z' having problems

4 Ansichten (letzte 30 Tage)
Duy Doan
Duy Doan am 15 Aug. 2018
Kommentiert: Duy Doan am 15 Aug. 2018
Attempting to use dateime function on a list of date times in the format: '2018-08-01T20:05:00.000Z', but I am having trouble setting up the date format so that MATLAB can convert it as such. I have tried 'yyyy-MM-dd''T'HH:mm:ss.SSS' but that doesn't seem to work. I am not sure how to address this issue.

Akzeptierte Antwort

Kojiro Saito
Kojiro Saito am 15 Aug. 2018
How about this?
dt = '2018-08-01T20:05:00.000Z';
dtTime = datetime(dt, 'InputFormat', 'yyyy-MM-dd''T''HH:mm:ss.SSS''Z')
  1 Kommentar
Duy Doan
Duy Doan am 15 Aug. 2018
Hi!
I was able to find out the exact format:
'yyyy-MM-dd''T''HH:mm:ss.SSSX'
Tagging this as the answer.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Dates and Time finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by