Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: TOtherGenerex process<TOtherGenerex, TOtherGenerexMatch, TOtherResult>(Func<TGenerexMatch, TOtherResult>)

Declaration

protected TOtherGenerex process<TOtherGenerex, TOtherGenerexMatch, TOtherResult>(
    Func<TGenerexMatch, TOtherResult> selector
)

Summary

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

Generic type parameters

TOtherGenerex
  • Must derive from: RT.Generexes.GenerexWithResultBase<T, TOtherResult, TOtherGenerex, TOtherGenerexMatch>.
Generex type to return.
TOtherGenerexMatch
  • Must derive from: RT.Generexes.GenerexMatch<T, TOtherResult>.
Generex match type that corresponds to TOtherGenerex
TOtherResult Type of the object returned by selector.

Parameters

Func<TGenerexMatch, TOtherResult>selector Function to process a regular expression match.