C# Класс Rebel.Framework.WildcardRegex

Represents a wildcard running on the System.Text.RegularExpressions engine.
Наследование: System.Text.RegularExpressions.Regex
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

WildcardRegex() публичный Метод

Initializes a wildcard with the given search pattern.
public WildcardRegex ( string pattern ) : System.Text.RegularExpressions
pattern string The wildcard pattern to match.
Результат System.Text.RegularExpressions

WildcardRegex() публичный Метод

Initializes a wildcard with the given search pattern and options.
public WildcardRegex ( string pattern, RegexOptions options ) : System.Text.RegularExpressions
pattern string The wildcard pattern to match.
options RegexOptions A combination of one or more /// .
Результат System.Text.RegularExpressions

WildcardToRegex() публичный статический Метод

Converts a wildcard to a regex.
public static WildcardToRegex ( string pattern ) : string
pattern string The wildcard pattern to convert.
Результат string