How to Change the first letter of a string to capital case and the rest to lowercase
Ältere Kommentare anzeigen
impropermsg = input('Enter the sentence : \n', 's');
function propermsg = changemsg(impropermsg)
propermsg = strcat(upper(impropermsg(1)),lower(impropermsg(2:end)));
end
% The user can input but nothing happens
3 Kommentare
Walter Roberson
am 13 Dez. 2020
You are missing the step of invoking the function. You get the input and you define the function but not call the function on the input
Les Beckham
am 13 Dez. 2020
You created a function that looks like it will do what you want but (at least in the code you posted) you never called the function.
You could just eliminate the 2nd and 4th lines of this code and you will have a simple two line script that does what you want (with the answer being in the propermsg string). If you want the result to be displayed, just take the semicolon off of the end of the propermsg = ... line.
sydney salvador
am 16 Dez. 2020
Akzeptierte Antwort
Weitere Antworten (3)
mahmoud abdelaal
am 3 Okt. 2022
Verschoben: Image Analyst
am 3 Okt. 2022
word='si'
new=replace(word,word(1),upper(word(1)))
1 Kommentar
That doesn't replace the rest with lower case like requested:
word='siUPPERCASE'
new=replace(word,word(1),upper(word(1)))
You'd need to add this line:
new = replace(new, word(2:end), lower(word(2:end)))
Toshiaki Takeuchi
am 4 Jun. 2024
Bearbeitet: Walter Roberson
am 5 Jun. 2024
str = "test";
pat = lineBoundary("start")+lettersPattern(1);
new_str = replace(str,pat,(upper(extract(str,pat))))
1 Kommentar
Walter Roberson
am 5 Jun. 2024
This misses on the "convert the rest to lowercase"
Kategorien
Mehr zu Entering Commands finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!