Text.Lower

構文

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

バージョン情報

text のすべての文字を小文字に変換した結果を返します。 オプションの culture を指定することもできます (例: "en-US")。

例 1

"AbCd" の小文字のバージョンを取得します。

使用方法

Text.Lower("AbCd")

出力

"abcd"