How to delete the colon's in a matrix?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi;
I have a data in the form of :
1,2:8
1,3:3
1,4:3
1,5:2
1,6:5
Is there an easy way to remove the colons and have the form below?
1,2,8
1,3,3
1,4,3
1,5,2
1,6,5
I have many many rows like that and I am looking for a quick way if possible...
Regards...
2 件のコメント
回答 (2 件)
Walter Roberson
2016 年 3 月 9 日
If you have strings or a cell array of strings, you could use
regexp(TheData, ':', ',')
Jos (10584)
2016 年 3 月 9 日
Is the data stored as strings in a cell array?
C = {'1,6:3','2,5:3','99,103:4'}
C2 = strrep(C,':',',')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!