Question on datetime Input Format

조회 수: 5 (최근 30일)
Xymbu
Xymbu 2021년 1월 30일
답변: Cris LaPierre 2021년 1월 30일
I can't seem to get the input format for the date time conversion that works with data formatted as shown below
'Sat Jan 30 03:05:15 +0000 2021'
ive tried
'eeee MMMM d HH:mm:ss Z y'
but still nothing

채택된 답변

Cris LaPierre
Cris LaPierre 2021년 1월 30일
The trick for me was having to specify a time zone. I'm not sure what timezone it should be so I selected UTC. I found the format section of the datetime documentation page helpful in getting the input format correct.
d='Sat Jan 30 03:05:15 +0000 2021';
D = datetime(d,"InputFormat","eee MMM dd HH:mm:ss Z yyyy","TimeZone","UTC")
D = datetime
30-Jan-2021 03:05:15

추가 답변 (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