What is a good way to combine strings (of varying length) that are stored in cell arrays?

6 views (last 30 days)
Suppose I have the following variables A and B (both 3x1 cell arrays) as follows.
A = {'A'; 'AB'; 'ABC'}; B = {'1'; '12'; '123'};
How can I create the new variable C (also a 3x1 cell array) as shown below?
C =
'A1'
'AB12'
'ABC123'
I have looked into various functions like strjoin(), but nothing has been apparent.
Thanks!

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 31 Mar 2014
strcat(A,B)

More Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!