Regex.Replace¶
Name | Mandatory | Description | Default | Type |
---|---|---|---|---|
⬅️ Input |
The string to modify. | String |
||
Output ➡️ |
The input string with all occurrences of the regex pattern replaced with the replacement string. | String |
||
Regex |
No | The regular expression as a string. | `` | String |
Replacement |
No | The regex replacement expression. | `` | String Var(String) |
This shard modifies the input string by replacing all occurrences of the regex pattern, specified in the Regex parameter, with the replacement string specified in the Replacement parameter.
Details¶
If the input string contains no occurrences of the regex, the input is returned unchanged.