Replace(Text text, Text old, Text new)
Replaces substrings containing the old text with the new text in the given text.
Parameters
- text
- The text in which you want to replace some characters.
- old
- The text you want to replace.
- new
- The new text to replace the old text with.
Returns
Text
Examples
Replace("TypeAA28", "AA", "BB")
returns "TypeBB28".Replace("Linda May", "May", "Evans")
returns "Linda Evans".