TStringBuilderBase::Join

Append every element of the range to the builder, separating the elements by the delimiter.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Misc/StringBuilder.h

Include

#include "Misc/StringBuilder.h"

Syntax

template<typename RangeType, typename DelimiterType, typename>
BuilderType & Join
(
    RangeType && InRange,
    DelimiterType && InDelimiter
)

Remarks

Append every element of the range to the builder, separating the elements by the delimiter.

This function is only available when the elements of the range and the delimiter can both be written to the builder using the append operator.

Returns

The builder, to allow additional operations to be composed with this one.

Parameters

Parameter

Description

InRange

The range of elements to join and append.

InDelimiter

The delimiter to append as a separator for the elements.

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