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 TupleType, typename DelimiterType, typename QuoteType>
Private::TJoinTupleQuotedBy < TupleType, FIdentityFunctor , DelimiterType, QuoteType > UE::String::JoinTupleQuoted
(
TupleType && Tuple,
DelimiterType && Delimiter,
QuoteType && Quote
)
}
}
Remarks
Create an object that can be appended to a string builder to append every element of the tuple to the builder, separating the elements by the delimiter and surrounding every element on both sides with a quote. An anonymous object to append to a string builder.
Parameters
| Name | Description |
|---|---|
| Tuple | The tuple of elements to join and append. |
| Delimiter | The delimiter to append as a separator for the elements. |
| Quote | The quote to append on both sides of each element. |