Hi all, I would like to know how to identify and extract a number or digit from a string or text, so if I have Ans = ['2.66 meters in the front of the mirror']; I would only like to identify and extract the double, this should be a general thing and not only specific to the 2.66. Please help

 Akzeptierte Antwort

madhan ravi
madhan ravi am 11 Okt. 2020

0 Stimmen

Wanted = str2double(regexp(Ans, '(+|-)?(\d+)?\.?\d*', 'match'))

Weitere Antworten (1)

Ameer Hamza
Ameer Hamza am 11 Okt. 2020
Bearbeitet: Ameer Hamza am 11 Okt. 2020

0 Stimmen

Try sscanf()
str = '2.66 meters in the front of the mirror';
nums = sscanf(str, '%f');
Result
>> nums
nums =
2.6600

1 Kommentar

Omphemetse Moeng
Omphemetse Moeng am 11 Okt. 2020
Thank you, this only works if the number is placed first, so generally should its position in the string change it does not work anymore, I then get 0x0 double. Is there a more general way to this?

Melden Sie sich an, um zu kommentieren.

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!

Translated by