UGameplayStatics::GetKeyValue

Break up a key=value pair into its key and value.

Windows
MacOS
Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/Kismet/GameplayStatics.h

Include

#include "Kismet/GameplayStatics.h"

Source

/Engine/Source/Runtime/Engine/Private/GameplayStatics.cpp

Syntax

static void GetKeyValue
(
    const FString & Pair,
    FString & Key,
    FString & Value
)

Remarks

Break up a key=value pair into its key and value.

Parameters

Parameter

Description

Pair

The string containing a pair to split apart.

Key

(out) Key portion of Pair. If no = in string will be the same as Pair.

Value

(out) Value portion of Pair. If no = in string will be empty.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss