How do I make the first letter of a string uppercase, but not change the case of any of the other letters?
For example:
\"this is a test\"
You can do it in one line like this
string[0].toUpperCase() + string.substring(1)