Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool RemoveFromStart
(
CharRangeType&& InPrefix, |
Removes the text from the start of the string if it exists. | ||
bool RemoveFromStart
(
const ElementType* InPrefix, |
Removes the text from the start of the string if it exists. | ||
bool RemoveFromStart
(
const FString& InPrefix, |
Removes the text from the start of the string if it exists. | ||
bool RemoveFromStart
(
const ElementType* InPrefix, |
Removes the text from the start of the string if it exists. |
RemoveFromStart(CharRangeType &&, ESearchCase::Type)
Description
Removes the text from the start of the string if it exists.
| Name | RemoveFromStart |
| 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 RemoveFromStart
(
CharRangeType && InPrefix,
ESearchCase::Type SearchCase
)
true if the prefix was removed, otherwise false.
Parameters
| Name | Remarks |
|---|---|
| InPrefix | The prefix to search for at the start of the string to remove. |
| SearchCase | Indicates whether the search is case sensitive or not (defaults to ESearchCase::IgnoreCase) |
RemoveFromStart(const ElementType *, ESearchCase::Type)
Description
Removes the text from the start of the string if it exists.
| Name | RemoveFromStart |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
bool RemoveFromStart
(
const ElementType * InPrefix,
ESearchCase::Type SearchCase
)
true if the prefix was removed, otherwise false.
Parameters
| Name | Remarks |
|---|---|
| InPrefix | The prefix to search for at the start of the string to remove. |
| SearchCase | Indicates whether the search is case sensitive or not (defaults to ESearchCase::IgnoreCase) |
RemoveFromStart(const FString &, ESearchCase::Type)
Description
Removes the text from the start of the string if it exists.
| Name | RemoveFromStart |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
bool RemoveFromStart
(
const FString & InPrefix,
ESearchCase::Type SearchCase
)
true if the prefix was removed, otherwise false.
Parameters
| Name | Remarks |
|---|---|
| InPrefix | The prefix to search for at the start of the string to remove. |
| SearchCase | Indicates whether the search is case sensitive or not (defaults to ESearchCase::IgnoreCase) |
RemoveFromStart(const ElementType *, int32, ESearchCase::Type)
Description
Removes the text from the start of the string if it exists.
| Name | RemoveFromStart |
| 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 RemoveFromStart
(
const ElementType * InPrefix,
int32 InPrefixLen,
ESearchCase::Type SearchCase
)
true if the prefix was removed, otherwise false.
Parameters
| Name | Remarks |
|---|---|
| InPrefix | The prefix to search for at the start of the string to remove. |
| InPrefixLen | The length of InPrefix |