Method | Description | |
---|---|---|
WildcardRegex ( string pattern ) : System.Text.RegularExpressions |
Initializes a wildcard with the given search pattern.
|
|
WildcardRegex ( string pattern, RegexOptions options ) : System.Text.RegularExpressions |
Initializes a wildcard with the given search pattern and options.
|
|
WildcardToRegex ( string pattern ) : string |
Converts a wildcard to a regex.
|
public WildcardRegex ( string pattern ) : System.Text.RegularExpressions | ||
pattern | string | The wildcard pattern to match. |
return | System.Text.RegularExpressions |
public WildcardRegex ( string pattern, RegexOptions options ) : System.Text.RegularExpressions | ||
pattern | string | The wildcard pattern to match. |
options | RegexOptions | A combination of one or more
/// |
return | System.Text.RegularExpressions |
public static WildcardToRegex ( string pattern ) : string | ||
pattern | string | The wildcard pattern to convert. |
return | string |