Text.End(string as nullable text, numChars as number) as nullable text
返回一个 text 值,该值是 text 值 text 的后 count 个字符。
text
count
获取文本 "Hello, World" 的后 5 个字符。
Text.End("Hello, World", 5)
"World"