Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FText
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Join an arbitrary list of formattable values together, separated by the given delimiter | Internationalization/Text.h | ||
| Internationalization/Text.h | |||
| Join an arbitrary list of formattable items together, separated by the given delimiter | Internationalization/Text.h |
Join(const FText &, const FFormatOrderedArguments &)
Description
Join an arbitrary list of formattable values together, separated by the given delimiter
Internally this uses FText::Format with a generated culture invariant format pattern
| Name | Join |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Internationalization/Text.h |
| Include Path | #include "Internationalization/Text.h" |
| Source | /Engine/Source/Runtime/Core/Private/Internationalization/Text.cpp |
static FText Join
(
const FText & Delimiter,
const FFormatOrderedArguments & Args
)
The joined FText
Parameters
| Name | Remarks |
|---|---|
| Delimiter | The delimiter to insert between the items |
| Args | An array of formattable values to join together |
Join(const FText &, const TArray< FText > &)
| Name | Join |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Internationalization/Text.h |
| Include Path | #include "Internationalization/Text.h" |
| Source | /Engine/Source/Runtime/Core/Private/Internationalization/Text.cpp |
static FText Join
(
const FText & Delimiter,
const TArray < FText > & Args
)
Join(const FText &, ArgTypes...)
Description
Join an arbitrary list of formattable items together, separated by the given delimiter
Internally this uses FText::Format with a generated culture invariant format pattern
| Name | Join |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Internationalization/Text.h |
| Include Path | #include "Internationalization/Text.h" |
template<typename... ArgTypes>
static FText Join
(
const FText & Delimiter,
ArgTypes... Args
)
The joined FText
Parameters
| Name | Remarks |
|---|---|
| Delimiter | The delimiter to insert between the items |
| Args | A variadic list of values to join together |