replace

replace

> Functions

Replaces all occurrences of search with replace in the string string.

Parameters
Return
Examples

replace("Banana", "n", "t") // "Batata" replace("a,b,c,d,e,f", ",", "+") // "a+b+c+d+e+f" replace("Hello world", "Hello", "Good evening") // "Good evening world"