C# Class Dynamitey.FluentRegex

Extension Methods for fluent Regex
Show file Open project: ekonbenefits/dynamitey

Public Methods

Method 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 method

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

FluentMatch() public static method

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

FluentMatches() public static method

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

Match() public static method

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.
return dynamic

Matches() public static method

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.
return IEnumerable