Replace Regex
PureReplaceRegexReplaces all matches of a regex pattern with the replacement string.
Type: Pure (no side effects)
Category: Fortuna|String & Text
Keywords: string & text
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Input | FString | — | Input parameter |
| Pattern | FString | — | Pattern parameter |
| Replacement | FString | — | Replacement parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | FString | ReturnValue output |
Example Use Cases
Example 1
Strip HTML tags from text.
Example 2
Sanitize user input by removing special characters.