Or(element, selector, comparer) Or(elements, selector, comparer) ThenExpect<>(expectation, selector, exceptionGenerator) ThenExpect<>(expectation, selector, exceptionGenerator)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Method: Stringerex<TCombined> ThenExpect<TCombined>(Stringerex, Func<TResult, StringerexMatch, TCombined>, Func<StringerexMatch<TResult>, Exception>)Declarationpublic Stringerex<TCombined> ThenExpect<TCombined>(
Stringerex expectation,
Func<TResult, StringerexMatch, TCombined> selector,
Func<StringerexMatch<TResult>, Exception> exceptionGenerator
) Summary
Returns a regular expression that matches this regular expression, then attempts to match the specified other
regular expression and throws an exception if the second regular expression fails to match; otherwise, a
result object is generated from the current result object and the second match. Generic type parametersTCombined |
Type of the result object for the resulting regular expression. |
ParametersStringerex | expectation |
The regular expression that is expected to match after the current one. | Func<TResult, StringerexMatch, TCombined> | selector |
A selector which, in case of a match, generates the new result given the current result object and the match
of the expectation. | Func<StringerexMatch<TResult>, Exception> | exceptionGenerator |
A selector which, in case of no match, generates the exception object to be thrown. |
Returns
The resulting regular expression. Remarks
Regular expressions created by this method cannot match backwards. The full set of affected methods is listed
at GenerexBase<T, TMatch, TGenerex, TGenerexMatch>.Then<TOtherGenerex, TOtherMatch, TOtherGenerexMatch>(Func<TGenerexMatch, GenerexBase<T, TOtherMatch, TOtherGenerex, TOtherGenerexMatch>>). |