Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: TGenerex RepeatGreedy(int, int)

Declaration

public TGenerex RepeatGreedy(
    int min,
    int max
)

Summary

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).

Parameters

intmin Minimum number of times to match.
intmax Maximum number of times to match.

Exceptions

  • System.ArgumentOutOfRangeException
    min is negative.
  • System.ArgumentException
    max is smaller than min.