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

5 vues (au cours des 30 derniers jours)
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,

Réponse acceptée

Walter Roberson
Walter Roberson le 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"

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by