how to read numbers in a string where white-space separated everthing
3 ビュー (過去 30 日間)
古いコメントを表示
how to read numbers in a string where white-space separated everything here an example for 2 numbers in a string tab separated: '3 9 8 . 6 1 9 5 0 0 1 3 0 3 1 3 . 2 1 2 7 6 0'
Thanks, Frank
2 件のコメント
採用された回答
Matt Fig
2012 年 11 月 8 日
編集済み: Matt Fig
2012 年 11 月 8 日
This is not possible without more information. Say you do this:
S=strrep('3 9 8 . 6 1 9 5 0 0 1 3 0 3 1 3 . 2 1 2 7 6 0',' ','')
% S='398.619500130313.212760'
Should the second number be 313.212760 or 130313.212760 or 3.212760 or any of the other several or so combinations? You need to provide more information to be able to decipher the numbers.
14 件のコメント
Matt Fig
2012 年 11 月 8 日
Glad to help! I am still curious as to how you ended up with char(0) instead of char(32), but I guess we may never know.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で String Parsing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!