Overview
Thereplace transformation replaces occurrences of a substring within a string.
Syntax
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
variable | string | Yes | The string to search in |
search | string | Yes | The substring or regex pattern to find |
isRegex | boolean | Yes | Whether the search string is a regular expression |
replace | string | Yes | The replacement string |
Examples
For replacing with a variable value, see Replace with Variable.