C# Class RegexToolbox.RegexBuilder

Exibir arquivo Open project: markwhitaker/RegexToolbox.NET Class Usage Examples

Public Methods

Method Description
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.

Method Details

EndOfString() public method

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

StartOfString() public method

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

WordBoundary() public method

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
return RegexBuilder