Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: Generex<T, TResult> Process<TResult>(Func<GenerexMatch<T>, TResult>)

  • Declared in: RT.Generexes.Generex<T>

Declaration

public Generex<T, TResult> Process<TResult>(
    Func<GenerexMatch<T>, TResult> selector
)

Summary

Processes each match of this regular expression by running it through a provided selector.

Generic type parameters

TResult Type of the object returned by selector, which is a result object associated with each match of the regular expression.

Parameters

Func<GenerexMatch<T>, TResult>selector Function to process a regular expression match.