Hello,
I have stored a string with all capital letters. For instance “NEW YORK” or “EXAMPLE OF THE EXAMPLE” and what I want to do is to convert the first letter of each word into capital letters and the rest into lowercase letter so that:
“NEW YORK” → “New York”
“EXAMPLE OF THE EXAMPLE” → “Example Of The Example”
“HELLO THERE HI” → “Hello There Hi”
Thanks.