Table of Contents

Class StringExtensions

Namespace
WildcardMatch
Assembly
NetAutoGUI.dll

Extensions to string

public static class StringExtensions
Inheritance
StringExtensions
Inherited Members

Methods

WildcardMatch(string, string, bool)

Tells if the given string matches the given wildcard. Two wildcards are allowed: '' and '?' '' matches 0 or more characters '?' matches any character

public static bool WildcardMatch(this string wildcard, string s, bool ignoreCase = false)

Parameters

wildcard string

The wildcard.

s string

The s.

ignoreCase bool

if set to true [ignore case].

Returns

bool