Ranges are expressed via the NumberInRange(string) function. The range is expressed in standard regular expression syntax: "min-max", ex: "1-42".
NumberInRange(string)
"min-max"
"1-42"
For instance, the following will produce the following regex ([1-4]|5) which matches one number between 1 and 5:
([1-4]|5)
var result = se .NumberInRange("1-5") .Generate();
There was an error while loading. Please reload this page.