Syntax

replace(<haystack>, <needle>, <replacement>[, <skipCharacters>[, <count>]])

Explanation

The replace function returns haystack with all occurrences of needle replaced with replacement. It optionally starts replacing after the first skipCharacters characters, but at most count occurrences.

See Also