How can I concatenate 3 strings using the value of a variable inbetween

5 Ansichten (letzte 30 Tage)
Hi,
I have two strings:
string1='John'
string2='Maria'
I would like to write the following to an external file, called stringtext.txt
John,1,Maria
John,2,Maria
John,3,Maria
John,4,Maria
John,5,Maria
How can I do it in MATLAB?
I thank you in advance,
Best regards,

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 5 Sep. 2021
string1='John'
string1 = 'John'
string2='Maria'
string2 = 'Maria'
string1 + "," + string(1:5).' + "," + string2
ans = 5×1 string array
"John,1,Maria" "John,2,Maria" "John,3,Maria" "John,4,Maria" "John,5,Maria"

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by