Proper(Text text)
Capitalizes the first letter in the text and any other letters in the text that follow any character other than a letter. Converts all other letters to lowercase letters, except for words that are entirely in uppercase, which are considered to be acronyms.
Parameters
- text
- The text you want to convert.
Returns
Text
Examples
Proper("Quick bROWn FOX")
returns "Quick Brown FOX".Proper("Quick, bROWn, FOX")
returns "Quick, Brown, FOX".Proper("Quick/bROWn/FOX")
returns "Quick/Brown/FOX".Proper(Lower("Quick bROWn FOX"))
returns "Quick Brown Fox".