How to add string to the beginning of each element in a string array?

137 Ansichten (letzte 30 Tage)
Hi there,
I'm trying to append the string 'Syl_' to the beginning of each element in a string array. For example, if I have the string array
s1 = string(1:4)
Columns 1 through 4
"1" "2" "3" "4"
I want to attach 'Syl_' to the beginning of each element, yielding:
Columns 1 through 4
"Syll_1" "Syll_2" "Syll_3" "Syll_4"
Any help

Akzeptierte Antwort

TADA
TADA am 12 Dez. 2018
strcat('Syl_', s1)
ans =
1×4 string array
"Syl_1" "Syl_2" "Syl_3" "Syl_4"
  2 Kommentare
TADA
TADA am 12 Dez. 2018
Bearbeitet: TADA am 12 Dez. 2018
also works with a cell array of strings:
c1 = cellfun(@num2str, num2cell(1:4), 'UniformOutput', false);
strcat('Syl_', c1)
ans =
1×4 cell array
{'Syl_1'} {'Syl_2'} {'Syl_3'} {'Syl_4'}
Ana Alonso
Ana Alonso am 12 Dez. 2018
Perfect! I didn't realize strcat could read in an array, thanks so much!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by