Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UKismetStringLibrary
Warnings * This is a simple, SLOW routine. Use with caution
Description
Searches this string for a given wild card
This is a simple, SLOW routine. Use with caution
| Name | MatchesWildcard |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Kismet/KismetStringLibrary.h |
| Include Path | #include "Kismet/KismetStringLibrary.h" |
| Source | /Engine/Source/Runtime/Engine/Private/KismetStringLibrary.cpp |
UFUNCTION (BlueprintPure, Category="Utilities|String")
static bool MatchesWildcard
(
const FString & SourceString,
const FString & Wildcard,
ESearchCase::Type SearchCase
)
true if this string matches the *?-type wildcard given.
Parameters
| Name | Remarks |
|---|---|
| Wildcard | *?-type wildcard |
| SearchCase | Indicates whether the search is case sensitive or not ( defaults to ESearchCase::IgnoreCase ) |