跳至主要内容

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

以 "He" 取代字串 "hEllo world" 中的文字 "hE"。

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

Result:

"Hello world"

Category

Replacer