All i want to do is match a number between 2-16, spanning 1 digit to 2 digits
according to http://www.regular-expressions.info/numericranges.html, they have examples for 1 or 2 digit ranges, but not something that spans both..if that makes sense.
The regex [0-9] matches single-digit numbers 0 to 9. [1-9][0-9] matches double-digit numbers 10 to 99.
Something like "^[2-9][1-6]$" matches 21 or even 96 lol. Any help would be appreciated.