Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
In a string field, replaces all occurrences of a string with a different string.Syntax
REPLACE(string, regex``, new_string)
Arguments
string - string expression to search regex - string expression indicating a regular expression to search for new_string - replacement string expressionExamples
REPLACE('President John Smith',’President’,’Ex-President’) returns ‘ex-President John Smith’