Regex Replace
Replaces data from the provided text using Regex

Input
Regex Replace
| Name | Required | Description |
|---|---|---|
| Regex Toolkit | ||
| Regex | Regex pattern to match text to be replaced. (Replaces all text matched, not capture groups) |
|Text| |Text to replace any matches found inside with your Replace With value.| |Replace With| |Text to replace all matches found in Text.|
Options
Regex Options
Options
| Name | Required | Description |
|---|---|---|
| Global | If set all matches will be returned, otherwise just the first match will be returned. | |
| Ignore Case | Makes the matching case in-sensitive. | |
| Multi Line | If enabled, ^ and $ match the start/end of a line. Does not override Single Line mode, which makes dot '.' match every character. | |
| Single Line | Treats the Text as a single line, meaning dot '.' matches every character. (Instead of every character except new line '\n') | |
| Non Capturing | Aka ExplicitCapture - Groups are non capturing by default when this is set. | |
| Extended | Ignore whitespace in your regex, enables comments using #. | |
| Right to left | Perform matching from right to left. |
| Name | Required | Description |
|---|---|---|
| Throw error if no match found | Fails this Action if there is no match found | |
| Timeout (s) | How long to search before giving up. |
Output
| Name | Required | Description |
|---|---|---|
| Action Success | True if the action passed, false if it failed. | |
| Updated Text |