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