function out_str = cellstr_joiner(in_cell, delim)
c=in_cell;
L=length(c);
str=[];
for i=1:L
if i~=L
str=[str,c{1,i}];
str=[str,delim];
else
str=[str,c{1,i}];
end
end
out_str=str;
end
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'hello', 'basic', 'test', 'case'};
y_correct = 'hello basic test case';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
|
2 | Pass |
x = {'this', 'one', '', 'has', ' ', 'some tricky', 'stuff'};
y_correct = 'this one has some tricky stuff';
assert(isequal(cellstr_joiner(x, ' '),y_correct))
|
3 | Pass |
x = {'delimiters', 'are', 'not', 'always', 'spaces'};
y_correct = 'delimiters?are?not?always?spaces';
assert(isequal(cellstr_joiner(x, '?'),y_correct))
|
Remove the small words from a list of words.
672 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1492 Solvers
390 Solvers
404 Solvers
436 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!