Syntax
Text.Lower(text as nullable text, optional culture as nullable text) as nullable text
About
返回将所有字符转换为小写的结果 text 。 还可以提供可选 culture 选项(例如,“en-US”)。
示例 1
获取小写版本的“AbCd”。
用法
Text.Lower("AbCd")
输出
"abcd"
Text.Lower(text as nullable text, optional culture as nullable text) as nullable text
返回将所有字符转换为小写的结果 text 。 还可以提供可选 culture 选项(例如,“en-US”)。
获取小写版本的“AbCd”。
用法
Text.Lower("AbCd")
输出
"abcd"