[vox-tech] regex to detect a range of numbers

Bill Kendrick vox-tech@lists.lugod.org
Tue, 11 May 2004 11:36:10 -0700


On Tue, May 11, 2004 at 11:32:35AM -0700, Dave Margolis wrote:
> Anyway, I came up with the following:
> (^[5-9][0-9]{2}|^[1][0-7][0-9]{2})
> 
> This seems to be working for 500-1799, but apparently we're supposed to
> rule out 500 as well.

Maybe do it for "50[1-9]", "5[1-9][0-9]", and then "6[0-9]{2}"... ?

-bill!