Replacer.ReplaceText
Sintassi
Replacer.ReplaceText(text as nullable text, old as text, new as text) as nullable text
Informazioni su
Sostituisce il testo old
nel valore text
originale con il testo new
. Questa funzione di sostituzione può essere usata in List.ReplaceValue
e Table.ReplaceValue
.
Esempio 1
Sostituire il testo "hE" con "He" nella stringa "hEllo world".
Utilizzo
Replacer.ReplaceText("hEllo world", "hE", "He")
Output
"Hello world"