Replacer.ReplaceText
Syntaxe
Replacer.ReplaceText(text as nullable text, old as text, new as text) as nullable text
Asi
Nahradí old
text v původním text
textem new
. Tuto funkci nahrazovače lze použít v List.ReplaceValue
a Table.ReplaceValue
.
Příklad 1
Nahraďte text "hE" slovem "He" v řetězci "hEllo world".
Využití
Replacer.ReplaceText("hEllo world", "hE", "He")
Výstup
"Hello world"