C# 클래스 Pihrtsoft.Text.RegularExpressions.Linq.Extensions.EnumerableExtensions

Provides a set of static methods that extends the IEnumerable<T> whose generic type argument is Match or Group.
파일 보기 프로젝트 열기: JosefPihrt/LinqToRegex

공개 메소드들

메소드 설명
EnumerateCaptures ( this groups ) : IEnumerable

Returns an enumerable collection of captures.

EnumerateCaptures ( this matches ) : IEnumerable

Returns an enumerable collection of captures.

EnumerateCaptures ( this matches, int groupNumber ) : IEnumerable

Returns an enumerable collection of captures from groups that have a specified number.

EnumerateCaptures ( this matches, string groupName ) : IEnumerable

Returns an enumerable collection of captures from groups thas have a specified name.

EnumerateGroups ( this matches ) : IEnumerable

Returns an enumerable collection of groups.

EnumerateGroups ( this matches, int groupNumber ) : IEnumerable

Returns an enumerable collection of groups with a specified number.

EnumerateGroups ( this matches, string groupName ) : IEnumerable

Returns an enumerable collection of groups with a specified name.

EnumerateIndexes ( this captures ) : IEnumerable

Returns an enumerable collection of captures indexes.

EnumerateLengths ( this captures ) : IEnumerable

Returns enumerable collection of captures lengths.

EnumerateSuccessGroups ( this matches ) : IEnumerable

Returns an enumerable collection of groups that have at least one capture.

EnumerateSuccessGroups ( this matches, int groupNumber ) : IEnumerable

Returns an enumerable collection of groups that have a specified name and have at least one capture.

EnumerateSuccessGroups ( this matches, string groupName ) : IEnumerable

Returns an enumerable collection of groups thas have a specified name and have at least one capture.

EnumerateValues ( this captures ) : IEnumerable

Returns enumerable collection of captures values.

메소드 상세

EnumerateCaptures() 공개 정적인 메소드

Returns an enumerable collection of captures.
is null.
public static EnumerateCaptures ( this groups ) : IEnumerable
groups this The sequence to enumerate.
리턴 IEnumerable

EnumerateCaptures() 공개 정적인 메소드

Returns an enumerable collection of captures.
is null.
public static EnumerateCaptures ( this matches ) : IEnumerable
matches this The sequence to enumerate.
리턴 IEnumerable

EnumerateCaptures() 공개 정적인 메소드

Returns an enumerable collection of captures from groups that have a specified number.
is null.
public static EnumerateCaptures ( this matches, int groupNumber ) : IEnumerable
matches this The sequence to enumerate.
groupNumber int A number of the group.
리턴 IEnumerable

EnumerateCaptures() 공개 정적인 메소드

Returns an enumerable collection of captures from groups thas have a specified name.
or is null.
public static EnumerateCaptures ( this matches, string groupName ) : IEnumerable
matches this The sequence to enumerate.
groupName string A name of the group.
리턴 IEnumerable

EnumerateGroups() 공개 정적인 메소드

Returns an enumerable collection of groups.
is null.
public static EnumerateGroups ( this matches ) : IEnumerable
matches this The sequence to enumerate.
리턴 IEnumerable

EnumerateGroups() 공개 정적인 메소드

Returns an enumerable collection of groups with a specified number.
is null.
public static EnumerateGroups ( this matches, int groupNumber ) : IEnumerable
matches this The sequence to enumerate.
groupNumber int A number of the group.
리턴 IEnumerable

EnumerateGroups() 공개 정적인 메소드

Returns an enumerable collection of groups with a specified name.
or is null.
public static EnumerateGroups ( this matches, string groupName ) : IEnumerable
matches this The sequence to enumerate.
groupName string A name of the group.
리턴 IEnumerable

EnumerateIndexes() 공개 정적인 메소드

Returns an enumerable collection of captures indexes.
is null.
public static EnumerateIndexes ( this captures ) : IEnumerable
captures this The sequence to enumerate.
리턴 IEnumerable

EnumerateLengths() 공개 정적인 메소드

Returns enumerable collection of captures lengths.
is null.
public static EnumerateLengths ( this captures ) : IEnumerable
captures this The sequence to enumerate.
리턴 IEnumerable

EnumerateSuccessGroups() 공개 정적인 메소드

Returns an enumerable collection of groups that have at least one capture.
is null.
public static EnumerateSuccessGroups ( this matches ) : IEnumerable
matches this The sequence to enumerate.
리턴 IEnumerable

EnumerateSuccessGroups() 공개 정적인 메소드

Returns an enumerable collection of groups that have a specified name and have at least one capture.
is null.
public static EnumerateSuccessGroups ( this matches, int groupNumber ) : IEnumerable
matches this The sequence to enumerate.
groupNumber int A number of the group.
리턴 IEnumerable

EnumerateSuccessGroups() 공개 정적인 메소드

Returns an enumerable collection of groups thas have a specified name and have at least one capture.
or is null.
public static EnumerateSuccessGroups ( this matches, string groupName ) : IEnumerable
matches this The sequence to enumerate.
groupName string A name of the group.
리턴 IEnumerable

EnumerateValues() 공개 정적인 메소드

Returns enumerable collection of captures values.
is null.
public static EnumerateValues ( this captures ) : IEnumerable
captures this The sequence to enumerate.
리턴 IEnumerable