The idea is to form the string S by interleaving the elements of a cell array of strings DELIMITER and another cell array of strings C.
Example of 2 inputs:
C = {'I','MATLAB'};
DELIMITER = {' love '})
Expected Output:
S = 'I love MATLAB'
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers229
Suggested Problems
-
Find relatively common elements in matrix rows
2158 Solvers
-
How to find the position of an element in a vector without using the find function
2821 Solvers
-
547 Solvers
-
Rounding off numbers to n decimals
5763 Solvers
-
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
2066 Solvers
More from this Author30
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.