yyyymmdd to mm-dd-yyyy

6 views (last 30 days)
Nicole Palermo
Nicole Palermo on 8 Nov 2017
Commented: Akira Agata on 1 Apr 2019
I unzipped NOAA summary of the day data in matlab and imported it as a table and as a matrix. The datetime is in yyyymmdd (20100801) format. How can I convert it to mm-dd-yyyy(08-01-2010)?
  4 Comments
Jan
Jan on 1 Apr 2019
@Elias: According to the documentation you need HH, not hh:
t = datetime('2010080123','InputFormat','yyyyMMddHH')
t.Format = 'MM-dd-yyyy';
t
t =
08-01-2010
Akira Agata
Akira Agata on 1 Apr 2019
In addition, how about using datestr function? Like:
t = datetime('2010080123','InputFormat','yyyyMMddHH');
str = datestr(t,'mm-dd-yyyy');
>> str
str =
'08-01-2010'

Sign in to comment.

Answers (0)

Categories

Find more on Dates and Time in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!