extracting number from a string
Ältere Kommentare anzeigen
How can I extract the number from the string with out regexp?
example: I am 19 and my brother is 14 years old
'19','12'
Antworten (1)
Rik
am 2 Aug. 2019
0 Stimmen
You can either use ismember to determine which positions contain the characters you're looking for, or you can use isstrprop. Then you can loop over the groups of digits. You can use find and diff to determine the positions where such a group starts. If you need to support decimal values as well things will get slightly more complicated.
I will not provide a complete working solution because this is homework. You can find guidelines for posting homework on this forum here.
You should also be aware that the string data type is something different from a char array.
1 Kommentar
amin mirzaei
am 2 Aug. 2019
Kategorien
Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!