Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FWildcardString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool IsMatch
(
const TCHAR* Input |
Matches the given input string to this wild card pattern. | Misc/WildcardString.h | |
| Matches the given input string to this wild card pattern. | Misc/WildcardString.h | ||
static bool IsMatch
(
const TCHAR* Pattern, |
Non-recursive wild card string matching algorithm. | Misc/WildcardString.h |
IsMatch(const TCHAR *)
Description
Matches the given input string to this wild card pattern.
| Name | IsMatch |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/WildcardString.h |
| Include Path | #include "Misc/WildcardString.h" |
bool IsMatch
(
const TCHAR * Input
) const
true if the input string matches this pattern, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Input | The string to match. |
IsMatch(const FString &)
Description
Matches the given input string to this wild card pattern.
| Name | IsMatch |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/WildcardString.h |
| Include Path | #include "Misc/WildcardString.h" |
bool IsMatch
(
const FString & Input
) const
true if the input string matches this pattern, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Input | The string to match. |
IsMatch(const TCHAR , const TCHAR )
Description
Non-recursive wild card string matching algorithm.
| Name | IsMatch |
| 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 IsMatch
(
const TCHAR * Pattern,
const TCHAR * Input
)
Parameters
| Name | Remarks |
|---|---|
| Pattern | The pattern to match. |
| Input | The input string to check. |