How to join a string cellarray row by row with a specified delimiter
Show older comments
If i have a cellarray "text",
text = {
'a' 'b' 'c'
'X' 'Y' 'z'
'1' '2' '3'
}; % a 3x3 cell
the desired output should be in a row by row concatenation with a comma:
'a,b,c'
'X,Y,z'
'1,2,3'
however,
result = strjoin(text,',')
will only give a result like this:
'a,X,1,b,Y,2,c,z,3'
Accepted Answer
More Answers (0)
Categories
Find more on Cell Arrays 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!