Text.Insert(text as nullable text, offset as number, newText as text) as nullable text
返回将文本值 newText 插入到文本值 text 中的位置 offset 的结果。位置从数字 0 开始。
newText
text
offset
在 "ABD" 中的 "B" 和 "D" 之间插入 "C"。
Text.Insert("ABD", 2, "C")
"ABCD"