Parse Key Value Pairs
PureParseKeyValuePairsParses a delimited key=value string into a map. Default format is 'key1=val1;key2=val2'. Delimiters are configurable.
Type: Pure (no side effects)
Category: Fortuna|String & Text
Keywords: string & text
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Input | FString | — | Input parameter |
| PairDelimiter | FString | ; | PairDelimiter parameter |
| KeyValueSeparator | FString | = | KeyValueSeparator parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | TMap<FString, FString> | ReturnValue output |
Example Use Cases
Example 1
Parse game config strings stored in a data table field.
Example 2
Decode URL-style parameter strings from a web response body.