How to extract year and month from attached string.
9 ビュー (過去 30 日間)
古いコメントを表示
I want to extract year and month from attached string data. Please help me.
Thank you so much in advance.
Regard's
Varunesh
0 件のコメント
採用された回答
madhan ravi
2019 年 1 月 10 日
編集済み: madhan ravi
2019 年 1 月 10 日
load('date.mat');
a=date{:,:};
b=regexp(a,'\T','split');
b=[b{:}];
B=datetime(b(1:2:end).','InputFormat','yyyy-MM-dd');
[year,month,day]=ymd(B);
3 件のコメント
その他の回答 (1 件)
Walter Roberson
2019 年 1 月 10 日
times = datetime(date.datetime, 'InputFormat', 'yyyy-MM-dd''T''HH:mm:ss');
By the way, your times are not completely sorted.
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!