How to access specific integer values from a String and Convert into Integers?
조회 수: 8 (최근 30일)
이전 댓글 표시
I have a MATLAB String "2018-04-24 04:30:00". I would like to access two specific values and save them as integers, i.e.
year = 2018
month = 04
I tried using str2num but it truncates the entire string because I can't apply it directly to the original string in that sense. My ultimate aim is to access the integer values of 2018 and 04 from this very string and save these into 2 seperate integer type variables - year and month. Any help in this regard from the MATLAB Community would be highly appreciated.
Thanks!
댓글 수: 0
채택된 답변
Stephan
2018년 11월 16일
편집: Stephan
2018년 11월 16일
A = "2018-04-24 04:30:00"
[Year, Month, Day] = ymd(datetime(A))
gives:
A =
"2018-04-24 04:30:00"
Year =
2018
Month =
4
Day =
24
For only month and day use:
[~, Month, Day] = ymd(datetime(A))
The answer above returns the result as datatype datetime.
Best regards
Stephan
댓글 수: 0
추가 답변 (1개)
madhan ravi
2018년 11월 16일
편집: madhan ravi
2018년 11월 16일
see datetime()
str="2018-04-24 04:30:00"
month=datetime(str,'Format','MM')
year=datetime(str,'Format','yyyy')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Numeric Types에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!