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