Text.End

構文

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

バージョン情報

texttext の最後の count 文字である text 値を返します。

例 1

テキスト "Hello, World" の最後の 5 文字を取得します。

使用方法

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

出力

"World"