Share via


Text.Lower

Syntax

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

About

Returns the result of converting all characters in text to lowercase. An optional culture may also be provided (for example, "en-US").

Example

Get the lowercase version of "AbCd".

Usage

Text.Lower("AbCd")

Output

"abcd"