Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Abstract class: RT.Generexes.GenerexNoResultBase<T, TGenerex, TGenerexMatch>

Summary

Abstract base class for Generex<T> and Stringerex.

Generic type parameters

T Type of the objects in the collection.
TGenerex The derived type. (Pass the type itself recursively.)
TGenerexMatch Type describing a match of a regular expression.

Instance methods

TGenerex
And<TOtherGenerex, TOtherGenerexMatch>(GenerexNoResultBase<T, TOtherGenerex, TOtherGenerexMatch> other)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that only matches if the subarray matched by this regular expression also contains a match for the specified other regular expression. (see also remarks)
TOtherGenerex
And<TOtherResult, TOtherGenerex, TOtherGenerexMatch>(GenerexWithResultBase<T, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other)
Returns a regular expression that only matches if the subarray matched by this regular expression also contains a match for the specified other regular expression, and if so, associates each match of this regular expression with the result object returned by the other regular expression’s first match. (see also remarks)
TGenerex
AndExact<TOtherGenerex, TOtherGenerexMatch>(GenerexNoResultBase<T, TOtherGenerex, TOtherGenerexMatch> other)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that only matches if the subarray matched by this regular expression also fully matches the specified other regular expression. (see also remarks)
TOtherGenerex
AndExact<TOtherResult, TOtherGenerex, TOtherGenerexMatch>(GenerexWithResultBase<T, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other)
Returns a regular expression that only matches if the subarray matched by this regular expression also fully matches the specified other regular expression, and if so, associates each match of this regular expression with the result object returned by the other regular expression’s match. (see also remarks)
TOtherGenerex
AndReverse<TOtherResult, TOtherGenerex, TOtherGenerexMatch>(GenerexWithResultBase<T, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other)
Returns a regular expression that only matches if the subarray matched by this regular expression also contains a match for the specified other regular expression, and if so, associates each match of this regular expression with the result object returned by the other regular expression’s first match found when matching backwards (starting at the end of the matched subarray). (see also remarks)
TGenerex
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Matches this regular expression atomically (without backtracking into it) (cf. (?>...) in traditional regular expression syntax).
TGenerex
Do(Action<TGenerexMatch> code)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Executes the specified code every time the regular expression engine encounters this expression.
bool
IsMatch(T[] input, int startAt = 0)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Determines whether the given input sequence contains a match for this regular expression, optionally starting the search at a specified index.
bool
IsMatchAt(T[] input, int mustStartAt = 0)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Determines whether the given input sequence matches this regular expression at a specific index.
bool
IsMatchExact(T[] input, int mustStartAt = 0, int? mustEndAt = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Determines whether the given input sequence matches this regular expression exactly.
bool
IsMatchReverse(T[] input, int? endAt = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Determines whether the given input sequence contains a match for this regular expression that ends before the specified maximum index.
bool
IsMatchUpTo(T[] input, int? mustEndAt = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Determines whether the given input sequence matches this regular expression up to a specific index.
TGenerex
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Turns the current regular expression into a zero-width positive look-ahead assertion (cf. (?=...) in traditional regular expression syntax).
TGenerex Turns the current regular expression into a zero-width negative look-ahead assertion (cf. (?!...) in traditional regular expression syntax).
TGenerex
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Turns the current regular expression into a zero-width positive look-behind assertion (cf. (?<=...) in traditional regular expression syntax).
TGenerex Turns the current regular expression into a zero-width negative look-behind assertion (cf. (?<!...) in traditional regular expression syntax).
TGenerexMatch
Match(T[] input, int startAt = 0)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Determines whether the given input sequence matches this regular expression, and if so, returns information about the first match.
IEnumerable<TGenerexMatch>
Matches(T[] input, int startAt = 0)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a sequence of non-overlapping regular expression matches, optionally starting the search at the specified index. (see also remarks)
IEnumerable<TGenerexMatch>
MatchesReverse(T[] input, int? endAt = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a sequence of non-overlapping regular expression matches going backwards (starting at the end of the specified input sequence), optionally starting the search at the specified index.
TGenerexMatch
MatchExact(T[] input, int mustStartAt = 0, int? mustEndAt = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Determines whether the given input sequence matches this regular expression exactly, and if so, returns information about the match.
TGenerexMatch
MatchReverse(T[] input, int? endAt = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Determines whether the given input sequence matches this regular expression, and if so, returns information about the first match found by matching the regular expression backwards (starting from the end of the input sequence).
TGenerex Returns a regular expression that matches this regular expression zero times or once. Zero times is prioritised (cf. ?? in traditional regular expression syntax).
TGenerex Returns a regular expression that matches this regular expression zero times or once. Once is prioritised (cf. ? in traditional regular expression syntax).
TGenerex
Or(T element)
Returns a regular expression that matches either this regular expression or the specified single element (cf. | in traditional regular expression syntax).
TGenerex
Or(IEnumerable<T> elements)
Returns a regular expression that matches either this regular expression or the specified sequence of elements (cf. | or [...] in traditional regular expression syntax).
TGenerex
Or(params T[] elements)
TGenerex
Or(Predicate<T> predicate)
Returns a regular expression that matches either this regular expression or a single element that satisfies the specified predicate (cf. | in traditional regular expression syntax).
TGenerex
Or(T element, IEqualityComparer<T> comparer)
Returns a regular expression that matches either this regular expression or the specified single element using the specified equality comparer (cf. | in traditional regular expression syntax).
TGenerex
Or(IEqualityComparer<T> comparer, IEnumerable<T> elements)
Returns a regular expression that matches either this regular expression or the specified sequence of elements using the specified equality comparer (cf. | or [...] in traditional regular expression syntax).
TGenerex
Or(IEqualityComparer<T> comparer, params T[] elements)
TGenerex
Or<TOtherGenerex, TOtherGenerexMatch>(GenerexBase<T, int, TOtherGenerex, TOtherGenerexMatch> other)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches either this regular expression or the specified other regular expression (cf. | in traditional regular expression syntax).
TGenerex Returns a regular expression that matches this regular expression zero or more times. Fewer times are prioritised (cf. *? in traditional regular expression syntax).
TGenerex
Repeat(int min)
Returns a regular expression that matches this regular expression the specified number of times or more. Fewer times are prioritised (cf. {min,}? in traditional regular expression syntax).
TGenerex
Repeat(int min, int max)
Returns a regular expression that matches this regular expression any number of times within specified boundaries. Fewer times are prioritised (cf. {min,max}? in traditional regular expression syntax).
TGenerex Returns a regular expression that matches this regular expression zero or more times. More times are prioritised (cf. * in traditional regular expression syntax).
TGenerex
RepeatGreedy(int min)
Returns a regular expression that matches this regular expression the specified number of times or more. More times are prioritised (cf. {min,} in traditional regular expression syntax).
TGenerex
RepeatGreedy(int min, int max)
Returns a regular expression that matches this regular expression any number of times within specified boundaries. More times are prioritised (cf. {min,max} in traditional regular expression syntax).
TGenerex
RepeatWithSeparator(TGenerex separator)
Returns a regular expression that matches this regular expression one or more times, interspersed with a separator. Fewer times are prioritised.
TGenerex
RepeatWithSeparatorGreedy(TGenerex separator)
Returns a regular expression that matches this regular expression one or more times, interspersed with a separator. More times are prioritised.
T[]
Replace(T[] input, Func<TGenerexMatch, IEnumerable<T>> replaceWith, int startAt = 0, int? maxReplace = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Replaces each match of this regular expression within the given input sequence with the replacement sequence returned by the given selector.
T[]
Replace(T[] input, IEnumerable<T> replaceWith, int startAt = 0, int? maxReplace = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Replaces each match of this regular expression within the given input sequence with a replacement sequence. (see also remarks)
T[]
ReplaceReverse(T[] input, Func<TGenerexMatch, IEnumerable<T>> replaceWith, int? endAt = null, int? maxReplace = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Replaces each match of this regular expression within the given input sequence, matched from the end backwards, with the replacement sequence returned by the given selector.
T[]
ReplaceReverse(T[] input, IEnumerable<T> replaceWith, int? endAt = null, int? maxReplace = null)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Replaces each match of this regular expression within the given input sequence, matched from the end backwards, with a replacement sequence.
TGenerex
Then(params T[] elements)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression followed by the specified sequence of elements.
TGenerex
Then(IEnumerable<T> elements)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
TGenerex
Then(Predicate<T> predicate)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression followed by a single element that satisfies the specified predicate.
TGenerex
Then(IEqualityComparer<T> comparer, params T[] elements)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression followed by the specified sequence of elements, using the specified equality comparer.
TGenerex
Then(IEqualityComparer<T> comparer, IEnumerable<T> elements)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
TGenerex
Then<TOtherGenerex, TOtherGenerexMatch>(params GenerexNoResultBase<T, TOtherGenerex, TOtherGenerexMatch>[] other)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches a consecutive sequence of regular expressions, beginning with this one, followed by the specified ones.
TGenerex
Then<TOtherGenerex, TOtherGenerexMatch>(IEnumerable<GenerexNoResultBase<T, TOtherGenerex, TOtherGenerexMatch>> other)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
TOtherGenerex
Then<TOtherGenerex, TOtherGenerexMatch, TOtherResult>(GenerexWithResultBase<T, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other)
Returns a regular expression that matches this regular expression, followed by the specified other, and retains the result object generated by each match of the other regular expression.
TOtherGenerex
Then<TOtherGenerex, TOtherMatch, TOtherGenerexMatch>(Func<TGenerexMatch, GenerexBase<T, TOtherMatch, TOtherGenerex, TOtherGenerexMatch>> selector)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression, then uses a specified selector to create a new regular expression from the match, and then matches the new regular expression. (see also remarks)
TGenerex
ThenExpect(Func<TGenerexMatch, Exception> exceptionGenerator, params T[] elements)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression, then attempts to match the specified sequence of elements and throws an exception if that sequence fails to match. (see also remarks)
TGenerex
ThenExpect(Func<TGenerexMatch, Exception> exceptionGenerator, IEnumerable<T> elements)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
TGenerex
ThenExpect(Predicate<T> predicate, Func<TGenerexMatch, Exception> exceptionGenerator)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression, then attempts to match a single element that satisfies the specified predicate and throws an exception if that predicate fails to match. (see also remarks)
TGenerex
ThenExpect(T element, Func<TGenerexMatch, Exception> exceptionGenerator)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression, then attempts to match a single element and throws an exception if that element fails to match. (see also remarks)
TGenerex
ThenExpect(Func<TGenerexMatch, Exception> exceptionGenerator, IEqualityComparer<T> comparer, params T[] elements)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression, then attempts to match the specified sequence of elements using the specified comparer and throws an exception if that sequence fails to match. (see also remarks)
TGenerex
ThenExpect(Func<TGenerexMatch, Exception> exceptionGenerator, IEqualityComparer<T> comparer, IEnumerable<T> elements)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
TGenerex
ThenExpect<TOtherGenerex, TOtherGenerexMatch>(Func<TGenerexMatch, Exception> exceptionGenerator, params GenerexNoResultBase<T, TOtherGenerex, TOtherGenerexMatch>[] expectation)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression, then attempts to match the specified sequence of other regular expressions and throws an exception if the sequence fails to match. (see also remarks)
TGenerex
ThenExpect<TOtherGenerex, TOtherGenerexMatch>(IEnumerable<GenerexNoResultBase<T, TOtherGenerex, TOtherGenerexMatch>> expectation, Func<TGenerexMatch, Exception> exceptionGenerator)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
TGenerex
ThenExpect<TOtherGenerex, TOtherGenerexMatch>(GenerexNoResultBase<T, TOtherGenerex, TOtherGenerexMatch> expectation, Func<TGenerexMatch, Exception> exceptionGenerator)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression, then attempts to match the specified other regular expression and throws an exception if the sequence fails to match. (see also remarks)
TOtherGenerex
ThenExpect<TOtherGenerex, TOtherResult, TOtherGenerexMatch>(Func<TGenerexMatch, GenerexWithResultBase<T, TOtherResult, TOtherGenerex, TOtherGenerexMatch>> selector, Func<TGenerexMatch, Exception> exceptionGenerator)
Returns a regular expression that matches this regular expression, then uses a specified selector to create a new regular expression from the match; then attempts to match the new regular expression and throws an exception if that regular expression fails to match. The new regular expression’s result object replaces the current one’s. (see also remarks)
TOtherGenerex
ThenExpect<TOtherGenerex, TOtherGenerexMatch, TOtherResult>(GenerexWithResultBase<T, TOtherResult, TOtherGenerex, TOtherGenerexMatch> expectation, Func<TGenerexMatch, Exception> exceptionGenerator)
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. (see also remarks)
TOtherGenerex
ThenExpect<TOtherGenerex, TOtherMatch, TOtherGenerexMatch>(Func<TGenerexMatch, GenerexBase<T, TOtherMatch, TOtherGenerex, TOtherGenerexMatch>> selector, Func<TGenerexMatch, Exception> exceptionGenerator)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches this regular expression, uses a specified selector to create a new regular expression from the match, attempts to match the new regular expression and throws an exception if the new regular expression fails to match. (see also remarks)
TGenerex
Throw(Func<TGenerexMatch, Exception> exceptionGenerator)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Throws an exception generated by the specified code when the regular expression engine encounters this expression.
TGenerex
Times(int times)
Returns a regular expression that matches this regular expression the specified number of times (cf. {times} in traditional regular expression syntax).
TGenerex
Where(Func<TGenerexMatch, bool> code)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Restricts matches of this regular expression to those that satisfy the specified predicate.

Static methods

TGenerex
Not(T element)
Returns a regular expression that matches a single element which is not equal to the specified element.
TGenerex
Not(params T[] elements)
Returns a regular expression that matches a single element which is none of the specified elements.
TGenerex
Not(IEqualityComparer<T> comparer, T element)
Returns a regular expression that matches a single element which is not equal to the specified element.
TGenerex
Not(IEqualityComparer<T> comparer, params T[] elements)
Returns a regular expression that matches a single element which is none of the specified elements.
TGenerex
Ors(params TGenerex[] other)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that matches any of the specified regular expressions (cf. | in traditional regular expression syntax).
TGenerex
Ors(IEnumerable<TGenerex> other)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
TGenerex
Recursive(Func<TGenerex, TGenerex> generator)
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Generates a recursive regular expression, i.e. one that can contain itself, allowing the matching of arbitrarily nested expressions.

Operators

TGenerex
operator+(GenerexNoResultBase<T, TGenerex, TGenerexMatch> one, GenerexNoResultBase<T, TGenerex, TGenerexMatch> two)
Returns a regular expression that matches the first regular expression followed by the second.
TGenerex
operator+(GenerexNoResultBase<T, TGenerex, TGenerexMatch> one, T two)
Returns a regular expression that matches the specified regular expression (first operand) followed by the specified element (second operand).
TGenerex
operator+(T one, GenerexNoResultBase<T, TGenerex, TGenerexMatch> two)
Returns a regular expression that matches the specified element (first operand) followed by the specified regular expression (second operand).
TGenerex
operator+(GenerexNoResultBase<T, TGenerex, TGenerexMatch> one, Predicate<T> two)
Returns a regular expression that matches the specified regular expression (first operand) followed by the specified element (second operand).
TGenerex
operator+(Predicate<T> one, GenerexNoResultBase<T, TGenerex, TGenerexMatch> two)
Returns a regular expression that matches the specified element (first operand) followed by the specified regular expression (second operand).
TGenerex
operator|(GenerexNoResultBase<T, TGenerex, TGenerexMatch> one, TGenerex two)
Returns a regular expression that matches either one of the specified regular expressions (cf. | in traditional regular expression syntax).
TGenerex
operator|(GenerexNoResultBase<T, TGenerex, TGenerexMatch> one, T two)
Returns a regular expression that matches either the specified regular expression (first operand) or the specified element (second operand) (cf. | in traditional regular expression syntax).
TGenerex
operator|(T one, GenerexNoResultBase<T, TGenerex, TGenerexMatch> two)
Returns a regular expression that matches either the specified element (first operand) or the specified regular expression (second operand) (cf. | in traditional regular expression syntax).
TGenerex
operator|(GenerexNoResultBase<T, TGenerex, TGenerexMatch> one, Predicate<T> two)
Returns a regular expression that matches either the specified regular expression (first operand) or a single element that satisfies the specified predicate (second operand) (cf. | in traditional regular expression syntax).
TGenerex
operator|(Predicate<T> one, GenerexNoResultBase<T, TGenerex, TGenerexMatch> two)
Returns a regular expression that matches either a single element that satisfies the specified predicate (first operand) or the specified regular expression (second operand) (cf. | in traditional regular expression syntax).

Static properties

TGenerex Returns a regular expression that matches a single element, no matter what it is (cf. . in traditional regular expression syntax).
TGenerex Returns a regular expression that matches any number of elements, no matter what they are; fewer are prioritized (cf. .*? in traditional regular expression syntax).
TGenerex Returns a regular expression that matches any number of elements, no matter what they are; more are prioritized (cf. .* in traditional regular expression syntax).
TGenerex Returns a regular expression that always matches and returns a zero-width match.
TGenerex Returns a regular expression that matches the end of the input collection (cf. $ in traditional regular expression syntax). Successful matches are always zero length.
TGenerex
  • Inherited from GenerexBase<T, int, TGenerex, TGenerexMatch>
Returns a regular expression that never matches (cf. (?!) in traditional regular expression syntax).
TGenerex Returns a regular expression that matches the beginning of the input collection (cf. ^ in traditional regular expression syntax). Successful matches are always zero length.