I need to change a string that contains a series of words (separated by spaces) in ALL CAPS, to title case, where only the first letter of each word is capitalized.
Example: ABSTRACTS AND PROSPECTUS to Abstracts And Prospectus
I know how to use the translate() function to drop the case of every letter, but am not sure of the best approach to do the above.
Thanks for any suggestions.
Mark
Example: ABSTRACTS AND PROSPECTUS to Abstracts And Prospectus
I know how to use the translate() function to drop the case of every letter, but am not sure of the best approach to do the above.
Thanks for any suggestions.
Mark