Sdílet prostřednictvím


Replacer.ReplaceText

Syntaxe

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

O uživateli

Nahradí old text v originálu text textem new . Tuto funkci nahrazovat 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"