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<TResult> Or(char, Func<StringerexMatch, TResult>)Declarationpublic Stringerex<TResult> Or(
char element,
Func<StringerexMatch, TResult> selector
) Summary
Returns a regular expression that matches either this regular expression or a single element (cf. | in
traditional regular expression syntax). Parameterschar | element |
The element to match. | Func<StringerexMatch, TResult> | selector |
A selector that returns the result object for the new regular expression based on the element matched. |
|