Replacer.ReplaceText
語法
Replacer.ReplaceText(text as nullable text, old as text, new as text) as nullable text
關於
以 new
文字取代原始 text
中的 old
文字。 這個取代子函式可用於 List.ReplaceValue
和 Table.ReplaceValue
中。
範例 1
以 "He" 取代字串 "hEllo world" 中的 "hE" 文字。
使用方式
Replacer.ReplaceText("hEllo world", "hE", "He")
輸出
"Hello world"