Text.Start

構文

Text.Start(text as nullable text, count as number) as nullable text

バージョン情報

text の最初の count 文字をテキスト値として返します。

例 1

"Hello, World" の最初の 5 文字を取得します。

使用方法

Text.Start("Hello, World", 5)

出力

"Hello"