Provides regular-expression functionality for strings.
.
Stringerex<TResult> | |
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. |
Stringerex<TCombinedResult> | And<TOtherResult, TOtherGenerex, TOtherGenerexMatch, TCombinedResult>(GenerexWithResultBase<char, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other, Func<TResult, TOtherGenerexMatch, TCombinedResult> selector) |
Returns a regular expression that only matches if the substring matched by this regular expression also
contains a match for the specified other regular expression, and if so, combines the first match’s result
object with the second match using a specified selector. |
Stringerex<TResult> | |
Returns a regular expression that only matches if the subarray matched by this regular expression also fully
matches the specified other regular expression. |
Stringerex<TCombinedResult> | AndExact<TOtherResult, TOtherGenerex, TOtherGenerexMatch, TCombinedResult>(GenerexWithResultBase<char, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other, Func<TResult, TOtherGenerexMatch, TCombinedResult> selector) |
Returns a regular expression that only matches if the substring matched by this regular expression also fully
matches the specified other regular expression, and if so, combines the first match’s result object with the
second match using a specified selector. |
Stringerex<TCombinedResult> | AndExactRaw<TOtherResult, TOtherGenerex, TOtherGenerexMatch, TCombinedResult>(GenerexWithResultBase<char, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other, Func<TResult, TOtherResult, TCombinedResult> selector) |
Returns a regular expression that only matches if the substring matched by this regular expression also fully
matches the specified other regular expression, and if so, combines the result objects associated with both
matches using a specified selector. |
Stringerex<TCombinedResult> | AndRaw<TOtherResult, TOtherGenerex, TOtherGenerexMatch, TCombinedResult>(GenerexWithResultBase<char, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other, Func<TResult, TOtherResult, TCombinedResult> selector) |
Returns a regular expression that only matches if the substring matched by this regular expression also
contains a match for the specified other regular expression, and if so, combines the result objects associated
with both matches using a specified selector. |
Stringerex<TCombinedResult> | AndReverse<TOtherResult, TOtherGenerex, TOtherGenerexMatch, TCombinedResult>(GenerexWithResultBase<char, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other, Func<TResult, TOtherGenerexMatch, TCombinedResult> selector) |
Returns a regular expression that only matches if the substring matched by this regular expression also
contains a match for the specified other regular expression when matching backwards, and if so, combines the
first match’s result object with the second match using a specified selector. |
Stringerex<TCombinedResult> | AndReverseRaw<TOtherResult, TOtherGenerex, TOtherGenerexMatch, TCombinedResult>(GenerexWithResultBase<char, TOtherResult, TOtherGenerex, TOtherGenerexMatch> other, Func<TResult, TOtherResult, TCombinedResult> selector) |
Returns a regular expression that only matches if the substring matched by this regular expression also
contains a match for the specified other regular expression when matching backwards, and if so, combines the
result objects associated with both matches using a specified selector. |
Stringerex<TResult> | |
Matches this regular expression atomically (without backtracking into it) (cf. (?>...) in
traditional regular expression syntax). |
Stringerex<TOtherResult> | |
Returns a regular expression that casts the result object of this regular expression to a different type. |
Stringerex<TResult> | | Executes the specified code every time the regular expression engine encounters this expression. |
Stringerex<TResult> | DoRaw(Action<TResult> code) |
bool | IsMatch(string input, int startAt = 0) |
Determines whether the given string contains a match for this regular expression, optionally starting the
search at a specified character index. |
bool | IsMatch(char[] input, int startAt = 0) |
Determines whether the given input sequence contains a match for this regular expression, optionally starting
the search at a specified index. |
bool | |
Determines whether the given string matches this regular expression at a specific character index. |
bool | |
Determines whether the given input sequence matches this regular expression at a specific index. |
bool | IsMatchExact(string input, int mustStartAt = 0, int? mustEndAt = null) |
Determines whether the given string matches this regular expression exactly. |
bool | IsMatchExact(char[] input, int mustStartAt = 0, int? mustEndAt = null) |
Determines whether the given input sequence matches this regular expression exactly. |
bool | |
Determines whether the given string contains a match for this regular expression that ends before the
specified maximum character index. |
bool | |
Determines whether the given input sequence contains a match for this regular expression that ends before the
specified maximum index. |
bool | |
Determines whether the given string matches this regular expression up to a specific character index. |
bool | |
Determines whether the given input sequence matches this regular expression up to a specific index. |
Stringerex<TResult> | |
Turns the current regular expression into a zero-width positive look-ahead assertion (cf. (?=...) in
traditional regular expression syntax). |
Stringerex<TResult> | |
Turns the current regular expression into a zero-width negative look-ahead assertion (cf. (?!...) in
traditional regular expression syntax), which returns the specified default result in case of a match. |
Stringerex<TResult> | |
Turns the current regular expression into a zero-width positive look-behind assertion (cf. (?<=...)
in traditional regular expression syntax). |
Stringerex<TResult> | |
Turns the current regular expression into a zero-width negative look-behind assertion (cf. (?<!...)
in traditional regular expression syntax), which returns the specified default result in case of a match. |
StringerexMatch<TResult> | Match(string input, int startAt = 0) |
Determines whether the given string matches this regular expression, and if so, returns information about the
first match. |
StringerexMatch<TResult> | Match(char[] input, int startAt = 0) |
Determines whether the given input sequence matches this regular expression, and if so, returns information
about the first match. |
IEnumerable<StringerexMatch<TResult>> | Matches(string input, int startAt = 0) |
Returns a sequence of non-overlapping regular expression matches, optionally starting the search at the
specified character index. |
IEnumerable<StringerexMatch<TResult>> | Matches(char[] input, int startAt = 0) |
Returns a sequence of non-overlapping regular expression matches, optionally starting the search at the
specified index. |
IEnumerable<StringerexMatch<TResult>> | |
Returns a sequence of non-overlapping regular expression matches going backwards (starting at the end of the
specified string), optionally starting the search at the specified index. |
IEnumerable<StringerexMatch<TResult>> | |
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. |
StringerexMatch<TResult> | MatchExact(string input, int mustStartAt = 0, int? mustEndAt = null) |
Determines whether the given string matches this regular expression exactly, and if so, returns information
about the match. |
StringerexMatch<TResult> | MatchExact(char[] input, int mustStartAt = 0, int? mustEndAt = null) |
Determines whether the given input sequence matches this regular expression exactly, and if so, returns
information about the match. |
StringerexMatch<TResult> | |
Determines whether the given string 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 string). |
StringerexMatch<TResult> | |
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). |
Stringerex<TOtherResult> | |
Returns a regular expression that matches only if the result object of this regular expression is of the
specified type. |
Stringerex<IEnumerable<TResult>> | |
Returns a regular expression that matches this regular expression zero times or once. Zero times is
prioritised (cf. ?? in traditional regular expression syntax). |
Stringerex<IEnumerable<TResult>> | |
Returns a regular expression that matches this regular expression zero times or once. Once is prioritised (cf.
? in traditional regular expression syntax). |
Stringerex<TResult> | |
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). |
Stringerex<TResult> | |
Returns a regular expression that matches either this regular expression or a single element (cf. | in
traditional regular expression syntax). |
Stringerex<TResult> | |
Returns a regular expression that matches either this regular expression or the specified sequence of elements
(cf. | in traditional regular expression syntax). |
Stringerex<TResult> | Or(char element, Func<StringerexMatch, TResult> selector, IEqualityComparer<char> comparer) |
Returns a regular expression that matches either this regular expression or a single element using the
specified equality comparer (cf. | in traditional regular expression syntax). |
Stringerex<TResult> | Or(string elements, Func<StringerexMatch, TResult> selector, IEqualityComparer<char> comparer) |
Returns a regular expression that matches either this regular expression or the specified sequence of elements
using the specified equality comparer (cf. | in traditional regular expression syntax). |
Stringerex<TResult> | |
Returns a regular expression that matches either this regular expression or the specified other regular
expression (cf. | in traditional regular expression syntax). |
Stringerex<TOtherResult> | |
Processes each match of this regular expression by running it through a provided selector. |
Stringerex<TOtherResult> | ProcessRaw<TOtherResult>(Func<TResult, TOtherResult> selector) |
Processes each match of this regular expression by running each result through a provided selector. |
TResult | |
Determines whether the given input string matches this regular expression, and if so, returns the result of
the first match. |
TResult | |
Determines whether the given input sequence matches this regular expression, and if so, returns the result of
the first match. |
IEnumerable<TResult> | |
Returns a sequence of non-overlapping regular expression matches, optionally starting the search at the
specified index. |
IEnumerable<TResult> | |
IEnumerable<TResult> | |
Returns a sequence of non-overlapping regular expression matches going backwards, optionally starting the
search at the specified index. |
IEnumerable<TResult> | |
TResult | RawMatchExact(string input, int mustStartAt = 0, int? mustEndAt = null) |
Determines whether the given input string matches this regular expression exactly, and if so, returns the
match. |
TResult | RawMatchExact(char[] input, int mustStartAt = 0, int? mustEndAt = null) |
Determines whether the given input sequence matches this regular expression exactly, and if so, returns the
match. |
TResult | |
Determines whether the given input string matches this regular expression, and if so, returns the result of
the first match found by matching the regular expression backwards. |
TResult | |
Determines whether the given input sequence matches this regular expression, and if so, returns the result of
the first match found by matching the regular expression backwards. |
Stringerex<IEnumerable<TResult>> | |
Returns a regular expression that matches this regular expression zero or more times. Fewer times are
prioritised (cf. *? in traditional regular expression syntax). |
Stringerex<IEnumerable<TResult>> | |
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). |
Stringerex<IEnumerable<TResult>> | |
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). |
Stringerex<IEnumerable<TResult>> | |
Returns a regular expression that matches this regular expression zero or more times. More times are
prioritised (cf. * in traditional regular expression syntax). |
Stringerex<IEnumerable<TResult>> | |
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). |
Stringerex<IEnumerable<TResult>> | |
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). |
Stringerex<IEnumerable<TResult>> | |
Returns a regular expression that matches this regular expression one or more times, interspersed with a
separator. Fewer times are prioritised. |
Stringerex<IEnumerable<TResult>> | |
Returns a regular expression that matches this regular expression one or more times, interspersed with a
separator. More times are prioritised. |
char[] | Replace(char[] input, Func<StringerexMatch<TResult>, IEnumerable<char>> replaceWith, int startAt = 0, int? maxReplace = null) |
Replaces each match of this regular expression within the given input sequence with the replacement sequence
returned by the given selector. |
char[] | Replace(char[] input, IEnumerable<char> replaceWith, int startAt = 0, int? maxReplace = null) |
Replaces each match of this regular expression within the given input sequence with a replacement sequence. |
char[] | ReplaceRaw(char[] input, Func<TResult, IEnumerable<char>> replaceWithRaw, int startAt = 0, int? maxReplace = null) |
Replaces each match of this regular expression within the given input sequence with the replacement sequence
returned by the given selector. |
char[] | |
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. |
char[] | ReplaceReverse(char[] input, IEnumerable<char> replaceWith, int? endAt = null, int? maxReplace = null) |
Replaces each match of this regular expression within the given input sequence, matched from the end
backwards, with a replacement sequence. |
char[] | ReplaceReverseRaw(char[] input, Func<TResult, IEnumerable<char>> replaceWithRaw, int? endAt = null, int? maxReplace = null) |
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. |
Stringerex<TResult> | | Returns a regular expression that matches this regular expression followed by the specified string. |
Stringerex<TResult> | Then(params char[] elements) |
Returns a regular expression that matches this regular expression followed by the specified sequence of
elements. |
Stringerex<TResult> | Then(IEnumerable<char> elements) |
Stringerex<TResult> | Then(Predicate<char> predicate) |
Returns a regular expression that matches this regular expression followed by a single element that satisfies
the specified predicate. |
Stringerex<TResult> | Then(IEqualityComparer<char> comparer, string str) |
Returns a regular expression that matches this regular expression followed by the specified string, using the
specified equality comparer. |
Stringerex<TResult> | Then(IEqualityComparer<char> comparer, params char[] elements) |
Returns a regular expression that matches this regular expression followed by the specified sequence of
elements, using the specified equality comparer. |
Stringerex<TResult> | Then(IEqualityComparer<char> comparer, IEnumerable<char> elements) |
Stringerex<TCombined> | |
Returns a regular expression that matches this regular expression, followed by the specified one, and
generates a result object that combines the result of this regular expression with the match of the other. |
Stringerex<TResult> | |
Returns a regular expression that matches this regular expression, then uses a specified selector to create a new regular expression from the match, then matches the new regular expression
and retains the result object from the first match. |
Stringerex<TResult> | Then<TOtherGenerex, TOtherGenerexMatch>(params GenerexNoResultBase<char, TOtherGenerex, TOtherGenerexMatch>[] other) |
Returns a regular expression that matches a consecutive sequence of regular expressions, beginning with this
one, followed by the specified ones. |
Stringerex<TResult> | Then<TOtherGenerex, TOtherGenerexMatch>(IEnumerable<GenerexNoResultBase<char, TOtherGenerex, TOtherGenerexMatch>> other) |
Stringerex<TCombined> | |
Returns a regular expression that matches this regular expression, followed by the specified one, and
generates a result object that combines the result of this regular expression with the match of the other. |
TOtherGenerex | Then<TOtherGenerex, TOtherMatch, TOtherGenerexMatch>(Func<StringerexMatch<TResult>, GenerexBase<char, TOtherMatch, TOtherGenerex, TOtherGenerexMatch>> selector) |
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. |
Stringerex<TResult> | |
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. |
Stringerex<TResult> | |
Stringerex<TResult> | |
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. |
Stringerex<TResult> | |
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. |
Stringerex<TResult> | ThenExpect(Func<StringerexMatch<TResult>, Exception> exceptionGenerator, IEqualityComparer<char> comparer, params char[] elements) |
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. |
Stringerex<TResult> | ThenExpect(Func<StringerexMatch<TResult>, Exception> exceptionGenerator, IEqualityComparer<char> comparer, IEnumerable<char> elements) |
Stringerex<TCombined> | |
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. |
Stringerex<TResult> | |
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. This regular expression’s result
object remains unaltered. |
Stringerex<TResult> | ThenExpect<TOtherGenerex, TOtherGenerexMatch>(Func<StringerexMatch<TResult>, Exception> exceptionGenerator, params GenerexNoResultBase<char, TOtherGenerex, TOtherGenerexMatch>[] expectation) |
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. |
Stringerex<TResult> | |
Stringerex<TResult> | |
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. |
Stringerex<TCombined> | |
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. |
TOtherGenerex | |
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. |
Stringerex<TResult> | ThenExpectRaw<TOtherGenerex, TOtherGenerexMatch>(Func<TResult, GenerexNoResultBase<char, TOtherGenerex, TOtherGenerexMatch>> selector, Func<TResult, Exception> exceptionGenerator) |
Returns a regular expression that matches this regular expression, then uses a specified selector to create a new regular expression from the result object; then attempts to match the new
regular expression and throws an exception if that regular expression fails to match. This regular
expression’s result object remains unaltered. |
Stringerex<TCombined> | |
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. |
TOtherGenerex | ThenExpectRaw<TOtherGenerex, TOtherResult, TOtherGenerexMatch>(Func<TResult, GenerexWithResultBase<char, TOtherResult, TOtherGenerex, TOtherGenerexMatch>> selector, Func<TResult, Exception> exceptionGenerator) |
Returns a regular expression that matches this regular expression, then uses a specified selector to create a new regular expression from the result object; 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. |
Stringerex<TResult> | |
Returns a regular expression that matches this regular expression, then uses a specified selector to create a new regular expression from the result of the match, and then matches the new
regular expression. This regular expression’s result object remains unaltered. |
Stringerex<TCombined> | ThenRaw<TOther, TCombined>(Stringerex<TOther> other, Func<TResult, TOther, TCombined> selector) |
Returns a regular expression that matches this regular expression, followed by the specified one, and
generates a result object that combines the original two matches. |
TOtherGenerex | ThenRaw<TOtherGenerex, TOtherResult, TOtherGenerexMatch>(Func<TResult, GenerexWithResultBase<char, TOtherResult, TOtherGenerex, TOtherGenerexMatch>> selector) |
Returns a regular expression that matches this regular expression, then uses a specified selector to create a new regular expression from the result of the match, and then matches the new
regular expression. This regular expression’s result object is replaced with the new one’s. |
Stringerex<TResult> | |
Throws an exception generated by the specified code when the regular expression engine encounters this
expression. |
Stringerex<IEnumerable<TResult>> | |
Returns a regular expression that matches this regular expression the specified number of times (cf.
{times} in traditional regular expression syntax). |
Stringerex<TResult> | | Restricts matches of this regular expression to those that satisfy the specified predicate. |
Stringerex<TResult> | |