Replace

Function

Replace(text, find, replace)

text
find
replace

Replace is included by default in each file as part of the Text library.

 

See also:


Use

The Replace() function finds a sub-string of text in a given text value and replaces it with a given sub-string.

Examples
  • Replace("abcdefg", "def", "_DEF_")  = "abc_DEF_g"
  • Replace("Do you wish me a good morning?", "wish me", "feel it is")  = "Do you feel it is a good morning?"