共用方式為


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"