Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/String
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/String/Join.h |
| Include | #include "String/Join.h" |
namespace UE
{
namespace String
{
template<typename RangeType, typename DelimiterType, typename CharType>
TStringBuilderBase < CharType > & UE::String::JoinTo
(
RangeType && Range,
DelimiterType && Delimiter,
TStringBuilderBase < CharType > & Builder
)
}
}
Remarks
Append every element of the range to the builder, separating the elements by the delimiter. The builder, to allow additional operations to be composed with this one.
Parameters
| Name | Description |
|---|---|
| Range | The range of elements to join and append. |
| Delimiter | The delimiter to append as a separator for the elements. |
| Builder | The builder to append to. |