Azzera filtri
Azzera filtri

convert text like '(18)' to number

1 visualizzazione (ultimi 30 giorni)
Stewart Smith
Stewart Smith il 8 Nov 2019
Risposto: Walter Roberson il 8 Nov 2019
is there simple way to extract this text and convert to number?

Risposte (1)

Walter Roberson
Walter Roberson il 8 Nov 2019
S = '(18)';
value = sscanf(S, '(%f' )
You can get more complicated, like,
S = '(18,-3.8)';
value = sscanf(S, '(%f,%f)');

Prodotti


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by