Replacer.ReplaceText
Syntax
Replacer.ReplaceText(text as nullable text, old as text, new as text) as nullable text
Info
Ersetzt den old
-Text im ursprünglichen text
durch den new
-Text. Diese Ersetzungsfunktion kann in List.ReplaceValue
und Table.ReplaceValue
verwendet werden.
Beispiel 1
Ersetzt den Text "hE" in der Zeichenfolge "hEllo world" durch "He".
Verwendung
Replacer.ReplaceText("hEllo world", "hE", "He")
Ausgabe
"Hello world"