Replacer.ReplaceText
Replacer.ReplaceText (text as nullable text, old as text, new as text) as nullable text
使用 new
文本替换原始 text
中的 old
文本。可以在 List.ReplaceValue
和 Table.ReplaceValue
中使用此替换器函数。
示例:
在字符串 "hEllo world" 中使用 "He" 替换文本 "hE"。
使用情况:
Replacer.ReplaceText("hEllo world","hE","He")
输出:
"Hello world"