共用方式為


Text.End

語法

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

關於

傳回 text 值,其為 texttext 的最後 count 個字元。

範例 1

取得文字 "Hello, World" 的最後 5 個字元。

使用方式

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

輸出

"World"