C# 클래스 Dynamitey.FluentRegex

Extension Methods for fluent Regex
파일 보기 프로젝트 열기: ekonbenefits/dynamitey

공개 메소드들

메소드 설명
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.

메소드 상세

FluentFilter() 공개 정적인 메소드

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

FluentMatch() 공개 정적인 메소드

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

FluentMatches() 공개 정적인 메소드

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

Match() 공개 정적인 메소드

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.
리턴 dynamic

Matches() 공개 정적인 메소드

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.
리턴 IEnumerable