How to extract year and month from attached string.

9 ビュー (過去 30 日間)
varunesh
varunesh 2019 年 1 月 10 日
コメント済み: madhan ravi 2019 年 1 月 10 日
I want to extract year and month from attached string data. Please help me.
Thank you so much in advance.
Regard's
Varunesh

採用された回答

madhan ravi
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 件のコメント
varunesh
varunesh 2019 年 1 月 10 日
Thank you so much. It is working.
Can you help me with another question? Please look once, If possible then please help me. a link is below.
madhan ravi
madhan ravi 2019 年 1 月 10 日
Anytime :) , not sure if I can help with that though sorry.

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
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.

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by