replace(to replace, replacement, source)with replaced Type: (Text, Text, Text) -> Text

Replaces all occurrences of the first text with the second text, within the third text

If the first text is empty, no replacement is performed. If any occurrences overlap, the earlier part is replaced first.

ExamplesClick an example to insert it
replace("at", "og", "The cat in the hat")"The cog in the hog"
replace("oo", "a", "Mooo!")"Mao!"
replace("", "x", "Orange")"Orange"