For a given input string, capitalize every letter at the beginning of a word, and transform the rest of the letters to lower-case.
Non-letter characters should remain the same.
You can assume there is only one space between every two words.
Examples:
input: 'this is BETTER than C++' output: 'This Is Better Than C++'
input: 'hEy, tHis iS vErY wroNg!' output: 'Hey, This Is Very Wrong!'
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers120
Suggested Problems
-
Omit columns averages from a matrix
620 Solvers
-
Back to basics 8 - Matrix Diagonals
973 Solvers
-
548 Solvers
-
Number of 1s in a binary string
11569 Solvers
-
Remove the two elements next to NaN value
713 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.