Text.Start(string as nullable text, count as number) as nullable text
返回 text 的前 count 个字符作为文本值。
text
count
获取 "Hello, World" 的前 5 个字符。
Text.Start("Hello, World", 5)
"Hello"