Text.Upper

構文

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

バージョン情報

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

例 1

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

使用方法

Text.Upper("aBcD")

出力

"ABCD"