yyyymmdd to mm-dd-yyyy
6 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Jan
2019 年 4 月 1 日
@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
2019 年 4 月 1 日
In addition, how about using datestr function? Like:
t = datetime('2010080123','InputFormat','yyyyMMddHH');
str = datestr(t,'mm-dd-yyyy');
>> str
str =
'08-01-2010'
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Dates and Time についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!