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