I want to match a number between 2-16, spanning 1 digit to 2 digits.
Regular-Expressions.info has examples for 1 or 2 digit ranges, but not something that spans both:
With delimiters (out of habit): /^([2-9]|1[0-6])$/
/^([2-9]|1[0-6])$/
The regex itself is just: ^([2-9]|1[0-6])$
^([2-9]|1[0-6])$