此浏览器不再受支持。
请升级到 Microsoft Edge 以使用最新的功能、安全更新和技术支持。
Text.Insert(text as nullable text, offset as number, newText as text) as nullable text
返回将文本值 newText 插入到位置 offset 的文本值 text 中的结果。 位置从数字 0 开始。
newText
offset
text
在 "ABD" 中的 "B" 和 "D" 之间插入 "C"。
使用情况
Text.Insert("ABD", 2, "C")
输出
"ABCD"
此页面是否有帮助?