C# Класс CASCExplorer.Wildcard

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

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

Метод Описание
Wildcard ( string pattern, bool matchStartEnd ) : System.Text.RegularExpressions

Initializes a wildcard with the given search pattern.

Wildcard ( string pattern, bool matchStartEnd, RegexOptions options ) : System.Text.RegularExpressions

Initializes a wildcard with the given search pattern and options.

WildcardToRegex ( string pattern, bool matchStartEnd ) : string

Converts a wildcard to a regex.

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

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

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

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

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

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

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