Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/FString > API/Runtime/Core/Containers/FString/FindLastCharByPredicate
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h |
| Include | #include "Containers/UnrealString.h" |
template<typename Predicate>
int32 FindLastCharByPredicate
&40;
Predicate Pred
&41; const
Remarks
Searches the string for the last occurrence of a character which matches the specified predicate. Index of found TCHAR, INDEX_NONE otherwise.
Parameters
| Name | Description |
|---|---|
| Pred | Predicate that takes TCHAR and returns true if TCHAR matches search criteria, false otherwise. |
| StartIndex | Index of element from which to start searching. Defaults to last TCHAR in string. |