Method | Description | |
---|---|---|
IsMatch ( string value ) : bool |
Tries to match value against Pattern value stored in this instance.
|
|
WildcardMatcher ( ) |
Default constructor.
|
|
WildcardMatcher ( string pattern ) |
Constructor which initializes pattern against which input strings are matched.
|
|
WildcardMatcher ( string pattern, char singleWildcard, char multipleWildcard ) |
Constructor which initializes pattern against which input strings are matched and wildcard characters used in string matching.
|
public IsMatch ( string value ) : bool | ||
value | string | String which should be matched against the contained pattern. |
return | bool |
public WildcardMatcher ( string pattern ) | ||
pattern | string | Pattern used to match input strings. |
public WildcardMatcher ( string pattern, char singleWildcard, char multipleWildcard ) | ||
pattern | string | Pattern against which input strings are matched. |
singleWildcard | char | Wildcard character used to replace single character in input strings. |
multipleWildcard | char | Wildcard character used to replace zero or more consecutive characters in input strings. |