Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool EndsWith
(
CharRangeType&& InSuffix, |
Test whether this string ends with given suffix. | ||
bool EndsWith
(
const ElementType* InSuffix, |
Test whether this string ends with given suffix. | ||
bool EndsWith
(
const FString& InSuffix, |
Test whether this string ends with given suffix. | ||
bool EndsWith
(
const ElementType* InSuffix, |
Test whether this string ends with given suffix. |
EndsWith(CharRangeType &&, ESearchCase::Type)
Description
Test whether this string ends with given suffix.
| Name | EndsWith |
| 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>
bool EndsWith
(
CharRangeType && InSuffix,
ESearchCase::Type SearchCase
) const
true if this string ends with specified text, false otherwise
Parameters
| Name | Remarks |
|---|---|
| InSuffix | The suffix to search for at the end of the string. |
| SearchCase | Indicates whether the search is case sensitive or not (defaults to ESearchCase::IgnoreCase) |
EndsWith(const ElementType *, ESearchCase::Type)
Description
Test whether this string ends with given suffix.
| Name | EndsWith |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
bool EndsWith
(
const ElementType * InSuffix,
ESearchCase::Type SearchCase
) const
true if this string ends with specified text, false otherwise
Parameters
| Name | Remarks |
|---|---|
| InSuffix | The suffix to search for at the end of the string. |
| SearchCase | Indicates whether the search is case sensitive or not (defaults to ESearchCase::IgnoreCase) |
EndsWith(const FString &, ESearchCase::Type)
Description
Test whether this string ends with given suffix.
| Name | EndsWith |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
bool EndsWith
(
const FString & InSuffix,
ESearchCase::Type SearchCase
) const
true if this string ends with specified text, false otherwise
Parameters
| Name | Remarks |
|---|---|
| InSuffix | The suffix to search for at the end of the string. |
| SearchCase | Indicates whether the search is case sensitive or not (defaults to ESearchCase::IgnoreCase) |
EndsWith(const ElementType *, int32, ESearchCase::Type)
Description
Test whether this string ends with given suffix.
| Name | EndsWith |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
| Source | /Engine/Source/Runtime/Core/Private/Containers/String.cpp.inl |
bool EndsWith
(
const ElementType * InSuffix,
int32 InSuffixLen,
ESearchCase::Type SearchCase
) const
true if this string ends with specified text, false otherwise
Parameters
| Name | Remarks |
|---|---|
| InSuffix | The suffix to search for at the end of the string. |
| SearchCase | Indicates whether the search is case sensitive or not (defaults to ESearchCase::IgnoreCase) |