UKismetStringLibrary::ParseIntoArray

Gets an array of strings from a source string divided up by a separator and empty strings can optionally be culled.

Windows
MacOS
Linux

References

Module

Engine

Header

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

Include

#include "Kismet/KismetStringLibrary.h"

Source

/Engine/Source/Runtime/Engine/Private/KismetStringLibrary.cpp

Syntax

static TArray< FString > ParseIntoArray
(
    const FString & SourceString,
    const FString & Delimiter,
    const bool CullEmptyStrings
)

Remarks

Gets an array of strings from a source string divided up by a separator and empty strings can optionally be culled.

Returns

The array of string that have been separated

Parameters

Parameter

Description

SourceString

The string to chop up

Delimiter

The string to delimit on

CullEmptyStrings

= true - Cull (true) empty strings or add them to the array (false)

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