DisplayClusterHelpers::str::StrToArray

Parses string items separated by specified separator into array Example: item1, item2,item3 , item4 => {item1, item2, item3, item4}

Windows
MacOS
Linux

References

Module

DisplayCluster

Header

/Engine/Plugins/Runtime/nDisplay/Source/DisplayCluster/Public/Misc/DisplayClusterHelpers.h

Include

#include "Misc/DisplayClusterHelpers.h"

Syntax

namespace DisplayClusterHelpers
{
    namespace str
    {
        template<typename TVal>
        static void DisplayClusterHelpers::str::StrToArray
        (
            const FString & InData,
            const FString & InSeparator,
            TArray< TVal > & OutData,
            bool bCullEmpty
        )
    }
}

Remarks

Parses string items separated by specified separator into array Example: item1, item2,item3 , item4 => {item1, item2, item3, item4}

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