convert text like '(18)' to number
1 回表示 (過去 30 日間)
古いコメントを表示
is there simple way to extract this text and convert to number?
0 件のコメント
回答 (1 件)
Walter Roberson
2019 年 11 月 8 日
S = '(18)';
value = sscanf(S, '(%f' )
You can get more complicated, like,
S = '(18,-3.8)';
value = sscanf(S, '(%f,%f)');
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!