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/DisplayClusterUtils/DisplayClusterCommonHelpers.h

Include

#include "DisplayClusterUtils/DisplayClusterCommonHelpers.h"

Syntax

namespace DisplayClusterHelpers
{
    namespace str
    {
        template<typename T>
        static TArray< T > DisplayClusterHelpers::str::StrToArray
        (
            const FString & InData,
            const FString & InSeparator,
            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