FString::ParseIntoArray

Breaks up a delimited string into elements of a string array.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/UnrealString.h

Include

#include "Containers/UnrealString.h"

Source

/Engine/Source/Runtime/Core/Private/Containers/String.cpp

Syntax

int32 ParseIntoArray
(
    TArray< FString > & OutArray,
    const TCHAR * pchDelim,
    bool InCullEmpty
) const

Remarks

Breaks up a delimited string into elements of a string array.

Returns

The number of elements in InArray

Parameters

Parameter

Description

InArray

The array to fill with the string pieces

pchDelim

The string to delimit on

InCullEmpty

If 1, empty strings are not added to the array

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