Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FString & operator/=
(
const ElementType* Str |
Concatenate this path with given path ensuring the / character is used between them | ||
FString & operator/=
(
CharRangeType&& Str |
Concatenate this path with given path ensuring the / character is used between them | ||
FString & operator/=
(
const CharType* Str |
Concatenate this path with given path ensuring the / character is used between them |
operator/=(const ElementType *)
Description
Concatenate this path with given path ensuring the / character is used between them
| Name | operator/= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
FString & operator/=
(
const ElementType * Str
)
reference to path
Parameters
| Name | Remarks |
|---|---|
| Str | path array of characters to be concatenated onto the end of this |
operator/=(CharRangeType &&)
Description
Concatenate this path with given path ensuring the / character is used between them
| Name | operator/= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
template<typename CharRangeType, typename CharRangeElementType>
FString & operator/=
(
CharRangeType && Str
)
reference to path
Parameters
| Name | Remarks |
|---|---|
| Str | path range of CharType (string class/string view/string builder etc) to be concatenated onto the end of this |
operator/=(const CharType *)
Description
Concatenate this path with given path ensuring the / character is used between them
| Name | operator/= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
template<typename CharType UE_REQUIRES>
FString & operator/=
(
const CharType * Str
)
reference to path
Parameters
| Name | Remarks |
|---|---|
| Str | path array of CharType (that needs converting) to be concatenated onto the end of this |