Text.Proper

Syntax

Text.Proper(text as nullable text, optional culture as nullable text) as nullable text

About

Returns the result of capitalizing only the first letter of each word in text value text. All other letters are returned in lowercase. An optional culture may also be provided (for example, "en-US").

Example 1

Use Text.Proper on a simple sentence.

Usage

Text.Proper("the QUICK BrOWn fOx jUmPs oVER tHe LAzy DoG")

Output

"The Quick Brown Fox Jumps Over The Lazy Dog"