UKismetStringLibrary::MatchesWildcard

Searches this string for a given wild card This is a simple, SLOW routine. Use with caution

Windows
MacOS
Linux

Warnings

  • This is a simple, SLOW routine. Use with caution

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/Kismet/KismetStringLibrary.h

Include

#include "Kismet/KismetStringLibrary.h"

Source

/Engine/Source/Runtime/Engine/Private/KismetStringLibrary.cpp

Syntax

static bool MatchesWildcard
(
    const FString & SourceString,
    const FString & Wildcard,
    ESearchCase::Type SearchCase
)

Remarks

Searches this string for a given wild card

This is a simple, SLOW routine. Use with caution

Returns

true if this string matches the *?-type wildcard given.

Parameters

Parameter

Description

Wildcard

*?-type wildcard

SearchCase

Indicates whether the search is case sensitive or not ( defaults to ESearchCase::IgnoreCase )

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss