Text.Start(text as nullable text, count as number) as nullable text
返回 text 的前 count 个字符作为文本值。
text
count
获取“Hello, World”的前 5 个字符。
使用情况
Text.Start("Hello, World", 5)
输出
"Hello"