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
Solution with StringBuilder:
value = new StringBuilder() .append(value.substring(0, 1).toUpperCase()) .append(value.substring(1)) .toString();
.. based on previous answers