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
-
Increment a number, given its digits
689 Solvers
-
Getting the row and column location from a matrix
301 Solvers
-
Generate N equally spaced intervals between -L and L
955 Solvers
-
07 - Common functions and indexing 1
455 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
405 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.