Capitalize only the first letter of a character

12 visualizzazioni (ultimi 30 giorni)
How to Capitalize only the first letter of a character ? upper function capitalize all the letters. I want only to make this change ONLY for the first letter.
Thank you in advance

Risposta accettata

David Hill
David Hill il 25 Gen 2021
Likely a better way.
a='my name';
a(1)=upper(a(1));

Più risposte (1)

Ive J
Ive J il 25 Gen 2021
Modificato: Ive J il 25 Gen 2021
str = "dogs are better than cats";
regexprep(str ,'(\<\w{1})', '${upper($1)}')
"Dogs Are Better Than Cats"

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by