I am in the need of an regexp that checks if one numerical value is greater then another value.
Pretty much like I would by writing (if 10>8)
...
Cl
Well if I'm understand correctly you've to compare these number inside an .htaccess or something like that. There's a stupid and unhealty way to do the compare, and require the numbers in the evaluated string: "^[0-9] [1-9][0-9]$" match if you compare "5 12" so you can understand that 5 is less than 12.
Comparing number of same length isn't crazy only for numbers under 100.
I think If you can explain better which is your context (iMacros, .htaccess...) someone can suggest a better way to do this.