Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FWildcardString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool ContainsWildcards () |
Checks whether this string contains wild card characters. | Misc/WildcardString.h | |
static bool ContainsWildcards
(
const TCHAR* Pattern |
Checks whether the specified pattern contains wild card characters. | Misc/WildcardString.h |
ContainsWildcards()
Description
Checks whether this string contains wild card characters.
| Name | ContainsWildcards |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/WildcardString.h |
| Include Path | #include "Misc/WildcardString.h" |
bool ContainsWildcards() const
true if this string contains wild cards, false otherwise.
ContainsWildcards(const TCHAR *)
Description
Checks whether the specified pattern contains wild card characters.
| Name | ContainsWildcards |
| 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 ContainsWildcards
(
const TCHAR * Pattern
)
true if the string contains wild cards, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Pattern | The string to check. |