C# 클래스 FlimFlan.ReadableRex.Pattern

파일 보기 프로젝트 열기: royosherove/dotnet-linq-to-regex 1 사용 예제들

공개 메소드들

메소드 설명
Group ( Pattern innerExpression ) : Pattern

A subset of the pattern that can be referenced as ordinal captures

IsTrue ( ) : bool
Literal ( string content ) : Pattern

A string that will be properly escaped so that reserved characters are treated as literals

NamedGroup ( string groupName, Pattern innerExpression ) : Pattern

A subset of the pattern that can be referenced as a named capture

NegatedSet ( Pattern innerExpression ) : Pattern

Matches any single character not contained within

Pattern ( ) : System
Phrase ( Pattern innerExpression ) : Pattern

A non-capturing group

RegEx ( string pattern ) : Pattern

Any existing regular expression pattern.

Set ( Pattern innerExpression ) : Pattern

Matches any single character contained within

ToString ( ) : string
operator ( ) : Pattern

비공개 메소드들

메소드 설명
Eval ( ) : string
Pattern ( string initialRegexContent ) : System

메소드 상세

Group() 공개 메소드

A subset of the pattern that can be referenced as ordinal captures
public Group ( Pattern innerExpression ) : Pattern
innerExpression Pattern
리턴 Pattern

IsTrue() 공개 메소드

public IsTrue ( ) : bool
리턴 bool

Literal() 공개 메소드

A string that will be properly escaped so that reserved characters are treated as literals
public Literal ( string content ) : Pattern
content string
리턴 Pattern

NamedGroup() 공개 메소드

A subset of the pattern that can be referenced as a named capture
public NamedGroup ( string groupName, Pattern innerExpression ) : Pattern
groupName string
innerExpression Pattern
리턴 Pattern

NegatedSet() 공개 메소드

Matches any single character not contained within
public NegatedSet ( Pattern innerExpression ) : Pattern
innerExpression Pattern
리턴 Pattern

Pattern() 공개 메소드

public Pattern ( ) : System
리턴 System

Phrase() 공개 메소드

A non-capturing group
public Phrase ( Pattern innerExpression ) : Pattern
innerExpression Pattern
리턴 Pattern

RegEx() 공개 메소드

Any existing regular expression pattern.
public RegEx ( string pattern ) : Pattern
pattern string
리턴 Pattern

Set() 공개 메소드

Matches any single character contained within
public Set ( Pattern innerExpression ) : Pattern
innerExpression Pattern
리턴 Pattern

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

operator() 공개 정적인 메소드

public static operator ( ) : Pattern
리턴 Pattern