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> ThenExpectRaw<TOther, TCombined>(Stringerex<TOther>, Func<TResult, TOther, TCombined>, Func<StringerexMatch<TResult>, Exception>)Declarationpublic Stringerex<TCombined> ThenExpectRaw<TOther, TCombined>(
Stringerex<TOther> expectation,
Func<TResult, TOther, 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 result objects of the two matches. Generic type parametersTOther |
Type of the result object of the expectation. | TCombined |
Type of the result object for the resulting regular expression. |
ParametersStringerex<TOther> | expectation |
The regular expression that is expected to match after the current one. | Func<TResult, TOther, TCombined> | selector |
A selector which, in case of a match, generates the new result given the current result and the result object
of 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>>). |