Match<>(input, generex, startAt) MatchExact<>(input, generex, mustStartAt, mustEndAt) New<>(comparer, elements) Not<>(comparer, elements)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Static method: Generex<T> Not<T>(IEqualityComparer<T>, params T[])Declarationpublic static Generex<T> Not<T>(
IEqualityComparer<T> comparer,
params T[] elements
)Summary
Returns a regular expression that matches a single element which is none of the specified elements. Generic type parameters| T |
Type of the objects in the collection against which the regular expression will be matched. |
Parameters| IEqualityComparer<T> | comparer |
Equality comparer to use. | | T[] | elements |
List of elements excluded from matching. |
|