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!