TextText.Lower本页总览Text.Lower 将所有字符转换为小写。 Syntax Text.Lower( text as text, optional culture as text) as text Remarks 返回将 text 中的所有字符转换为小写的结果。还可提供可选的 culture (例如 "en-US")。 Examples Example #1 获取 "AbCd" 的小写版本。 Text.Lower("AbCd") Result: "abcd" Category Text.Transformations