Can someone help me implement a function that takes in a date string that has the form 'm/d/y' that produces the full name of the date string ex: 'march 3,1956'
조회 수: 2 (최근 30일)
이전 댓글 표시
I kinda dont know where to start on this one.
댓글 수: 0
답변 (1개)
Azzi Abdelmalek
2013년 10월 21일
편집: Azzi Abdelmalek
2013년 10월 21일
d='10/25/2013'
d1=datenum(d,'mm/dd/yyyy');
out=datestr(d1,'mmmm dd, yyyy')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 String Parsing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!