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