REPLACE
Description
Example
REPLACE('I have 3 problems', 3, 0)Example with strings
REPLACE('Hello World', 'World', 'Atfinity')Last updated
Was this helpful?
REPLACE takes a string, a value to find, and a replacement value, and returns a new string with all occurrences of the found value replaced.
REPLACE('I have 3 problems', 3, 0)This returns "I have 0 problems".
REPLACE('Hello World', 'World', 'Atfinity')This returns "Hello Atfinity".
Last updated
Was this helpful?
Was this helpful?
