Text.ReplaceRange
語法
Text.ReplaceRange(text as nullable text, offset as number, count as number, newText as text) as nullable text
關於
傳回從文字值 count
中移除 text
個字元 (從位置 offset
開始),然後在 newText
中相同位置插入文字值 text
的結果。
範例 1
以新文字值 "CDE" 取代文字值 "ABGF" 中位於位置 2 的單一字元。
使用方式
Text.ReplaceRange("ABGF", 2, 1, "CDE")
輸出
"ABCDEF"