regexReplace
Replace all occurrences of the search string with the replacement string
regexReplace('target', 'search', 'replace'); Copy
regexReplace('target', 'search', 'replace');
regexReplace('target', ['search 1', 'search 2'], 'replace'); Copy
regexReplace('target', ['search 1', 'search 2'], 'replace');
regexReplace('target', ['search 1', 'search 2'], ['replace 1', 'replace 2']); Copy
regexReplace('target', ['search 1', 'search 2'], ['replace 1', 'replace 2']);
Name
regexReplace
Description
Replace all occurrences of the search string with the replacement string
Example
Example
Example