C# 클래스 CASCExplorer.Wildcard

Represents a wildcard running on the System.Text.RegularExpressions engine.
상속: System.Text.RegularExpressions.Regex
파일 보기 프로젝트 열기: WoW-Tools/CASCExplorer 1 사용 예제들

공개 메소드들

메소드 설명
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