Text.Proper

構文

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

バージョン情報

テキスト値 text の各単語の最初の文字のみを大文字にした結果を返します。 他のすべての文字は小文字で返されます。 オプションの culture を指定することもできます (例: "en-US")。

例 1

単純な文では Text.Proper を使用します。

使用方法

Text.Proper("the QUICK BrOWn fOx jUmPs oVER tHe LAzy DoG")

出力

"The Quick Brown Fox Jumps Over The Lazy Dog"