Possible Duplicate:
Capitalize First Char of Each Word in a String Java
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 the case of any of the other letters. After change it should be
One thousand only
Two hundred
Twenty
Seven
Note: I don't want to use the apache.commons.lang.WordUtils to do this.