How to delete the colon's in a matrix?
1 view (last 30 days)
Show older comments
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 Comments
Answers (2)
Walter Roberson
on 9 Mar 2016
If you have strings or a cell array of strings, you could use
regexp(TheData, ':', ',')
Jos (10584)
on 9 Mar 2016
Is the data stored as strings in a cell array?
C = {'1,6:3','2,5:3','99,103:4'}
C2 = strrep(C,':',',')
0 Comments
See Also
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!