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.
Показать файл Открыть проект

Открытые методы

Метод Описание
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