I am trying to get the first character of a string to convert into an upper case. How is this possible?
For example;
String c = "hi steve, how are you doing?";
I want the 'h' of 'hi' capitalized. How do I do that using code? Thank you in advanced!