C# Class Dynamitey.FluentRegex

Extension Methods for fluent Regex
Afficher le fichier Open project: ekonbenefits/dynamitey

Méthodes publiques

Méthode Description
FluentFilter ( this list, Regex regex ) : IEnumerable

Fluents the filter.

FluentMatch ( this regex, string inputString ) : dynamic

Fluents the match.

FluentMatches ( this regex, string inputString ) : IEnumerable

Fluents the matches.

Match ( string inputString, Regex regex ) : dynamic

Matches the specified input string.

Matches ( string inputString, Regex regex ) : IEnumerable

Matcheses the specified input string.

Method Details

FluentFilter() public static méthode

Fluents the filter.
public static FluentFilter ( this list, Regex regex ) : IEnumerable
list this The list.
regex System.Text.RegularExpressions.Regex The regex.
Résultat IEnumerable

FluentMatch() public static méthode

Fluents the match.
public static FluentMatch ( this regex, string inputString ) : dynamic
regex this The regex.
inputString string The input string.
Résultat dynamic

FluentMatches() public static méthode

Fluents the matches.
public static FluentMatches ( this regex, string inputString ) : IEnumerable
regex this The regex.
inputString string The input string.
Résultat IEnumerable

Match() public static méthode

Matches the specified input string.
public static Match ( string inputString, Regex regex ) : dynamic
inputString string The input string.
regex System.Text.RegularExpressions.Regex The regex.
Résultat dynamic

Matches() public static méthode

Matcheses the specified input string.
public static Matches ( string inputString, Regex regex ) : IEnumerable
inputString string The input string.
regex System.Text.RegularExpressions.Regex The regex.
Résultat IEnumerable