Skip to main content



ProperCase Function

The ProperCase function returns a copy of a string with the first letter of every word capitalized and the rest of the letters in lower case.

Syntax

ProperCase(string)

The ProperCase function returns a copy of a string with the first letter of every word capitalized and the rest of the letters in lower case.

Arguments

string String - A string.

Remarks

Example:

ProperCase("microsoft corporation"); // returns "Microsoft Corporation"