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,
int32 Count
&41; const
Remarks
Searches an initial substring 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. |
| Count | The number of characters from the front of the string through which to search. |