I've searched for a bit on this forum and all I can seem to find are questions on how to make the first letter of every word uppercase. Which is not what I'm looking for.
I'm looking for something that will check through all of the words in the String, and if they're uppercase, will change the letters to lowercase EXCEPT for the first one.
Like, let's say the string is:
"HI STACKOVERFLOW"
It would change it to:
"Hi Stackoverflow"
Or:
"I'M ASKING A QUESTION ON stackoverflow dot com"
It would change it to:
"I'm Asking a Question On stackoverflow dot com"