共用方式為


Text.At

語法

Text.At(text as nullable text, index as number) as nullable text

關於

傳回文字值 text 中位於位置 index 的字元。 文字中的第一個字元位置為 0。

範例 1

尋找字串 "Hello, World" 中位於位置 4 的字元。

使用方式

Text.At("Hello, World", 4)

輸出

"o"