Declaration
internal TGenerexWithResult process<TGenerexWithResult, TGenerexWithResultMatch, TResult>(
Func<TGenerexMatch, TResult> selector
)
Summary
Processes each match of this regular expression by running it through a provided selector.
Generic type parameters
TGenerexWithResult |
Generex type to return (for example, Generex<T, TResult>). |
TGenerexWithResultMatch |
Generex match type that corresponds to TGenerexWithResult |
TResult |
Type of the object returned by selector, which is a result object associated with each
match of the regular expression. |
Parameters
Func<TGenerexMatch, TResult> | selector |
Function to process a regular expression match. |