Text.Lower
Converts all characters to lowercase.
function (optionaltext
as nullable any, optionalculture
as nullable any) as nullable any
Returns the result of converting all characters in
text
to lowercase.Text.Transformations
Get the lowercase version of "AbCd".
Text.Lower("AbCd")
"abcd"
Last modified 4yr ago