I would say whatever string you have, split it into two strings, the first letter being one string, and the rest of the word being the second string, then use the toupper and tolower functions on each of them to get the desired case, then put the string back together in one string.
string myString
string 1 = myString.firstletter
string 2 = myString.therest
1.toupper
2.tolower
myString = 1 + 2
|