C# 클래스 RegexToolbox.RegexBuilder

파일 보기 프로젝트 열기: markwhitaker/RegexToolbox.NET 1 사용 예제들

공개 메소드들

메소드 설명
EndOfString ( ) : RegexBuilder

Add a zero-width anchor element to match the end of the string

StartOfString ( ) : RegexBuilder

Add a zero-width anchor element to match the start of the string

WordBoundary ( ) : RegexBuilder

Add a zero-width anchor element to match the boundary between an alphanumeric/underscore character and either a non-alphanumeric, non-underscore character or the start/end of the string.

메소드 상세

EndOfString() 공개 메소드

Add a zero-width anchor element to match the end of the string
public EndOfString ( ) : RegexBuilder
리턴 RegexBuilder

StartOfString() 공개 메소드

Add a zero-width anchor element to match the start of the string
public StartOfString ( ) : RegexBuilder
리턴 RegexBuilder

WordBoundary() 공개 메소드

Add a zero-width anchor element to match the boundary between an alphanumeric/underscore character and either a non-alphanumeric, non-underscore character or the start/end of the string.
public WordBoundary ( ) : RegexBuilder
리턴 RegexBuilder