Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FWildcardString
Description
As IsMatch, except can accept the end of the input string in order to facilitate FStringView usage.
if ESearchCase::IgnoreCase is used, the pattern and input are ToLower()d before comparison (note - does not apply locale and just uses c runtime style tolower)
| Name | IsMatchSubstring |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/WildcardString.h |
| Include Path | #include "Misc/WildcardString.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/WildcardString.cpp |
static bool IsMatchSubstring
(
const TCHAR * Pattern,
const TCHAR * Input,
const TCHAR * InputEnd,
ESearchCase::Type SearchCase
)