C# Class RegexToolbox.RegexBuilder

Afficher le fichier Open project: markwhitaker/RegexToolbox.NET Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

StartOfString() public méthode

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

WordBoundary() public méthode

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
Résultat RegexBuilder