How to access induvidual elements in a string
Info
This question is closed. Reopen it to edit or answer.
Show older comments
I have a many strings of format "xhrs ymin".
where x and y are numbers
i want to store x and y in separate integers.
how do i do it?
1 Comment
madhan ravi
on 15 Jun 2019
Answers (1)
Stephen23
on 15 Jun 2019
The simplest and most efficient solution is to use sscanf:
>> S = '23hrs 45min';
>> V = sscanf(S,'%fhrs%fmin')
V =
23
45
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!