Replace All
Replace multiple substrings in a string with their respective replacements
Category: Data Processing & Transformation · Group: Data Processing · Activity name: ReplaceAll

Example
outputVariable = ReplaceAll("<stringToProcess>", toReplace=[], replaceWith=[])
Inputs
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| String to process | string | Yes | The input string where the specified substrings will be replaced. | |
| Substrings to Replace | array | The list of substrings that will be replaced in the input string. | ||
| Replacement Strings | array | The list of strings that will replace the corresponding substrings in 'Substrings to Replace'. |
Outputs
| Name | Type | Description |
|---|---|---|
| outputVariable | string | Specifies the name of the variable that will store the replaced string. |