Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: Stringerex<TResult> Process<TResult>(Func<StringerexMatch, TResult>)

Declaration

public Stringerex<TResult> Process<TResult>(
    Func<StringerexMatch, TResult> selector
)

Summary

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

Generic type parameters

TResult Type of the result object associated with each match of the regular expression.

Parameters

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