Extract Between
PureExtractBetweenExtracts the substring between two delimiters.
Type: Pure (no side effects)
Category: Fortuna|String & Text
Keywords: string & text
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Input | FString | — | Input parameter |
| StartDelimiter | FString | — | StartDelimiter parameter |
| EndDelimiter | FString | — | EndDelimiter parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | FString | ReturnValue output |
| bFound | bool | bFound output |
Example Use Cases
Example 1
Parse a value from a config string like '[key=value]'.
Example 2
Extract a tag from XML-like data.