跳到主要内容

Replacer.ReplaceText

在提供的输入内替换文本。

Syntax

Replacer.ReplaceText(
text as text,
old as text,
new as text
) as text

Remarks

使用 new 文本替换原始 text 中的 old 文本。可以在 List.ReplaceValueTable.ReplaceValue 中使用此替换器函数。

Examples

Example #1

在字符串 "hEllo world" 中使用 "He" 替换文本 "hE"。

Replacer.ReplaceText("hEllo world", "hE", "He")

Result:

"Hello world"

Category

Replacer