How to change datetime format?
조회 수: 204 (최근 30일)
이전 댓글 표시
Given this:
datetime('02-Jul-2023','InputFormat','dd-MMM-yyyy')
How can I get this format ?
datetime('02-Jul-2023 22:00:00')
댓글 수: 0
채택된 답변
Stephen23
2023년 6월 13일
편집: Stephen23
2023년 6월 13일
You can specify different formats for the input and display:
DT = datetime('02-Jul-2023','InputFormat','dd-MMM-yyyy', 'Format','dd-MMM-yyyy HH:mm:ss')
If it is an existing DATETIME object, then simply modify its FORMAT property as you wish, e.g.:
DT.Format = 'uuuuDDD' % ISO 8601 day-number format
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!