Example strings
one thousand only two hundred twenty seven
How do I change the first character of a string in capital letter and not change
Given the input string:
input
Character.toUpperCase(input.charAt(0)) + input.substring(1).toLowerCase()