Hi,
I'm in need of a regular expression to use in a validation control that checks that the user input a correct range of values in the textboxes. The expression I need would allow only positive integers between 5 and 110 to be entered. I currently used the below expression which has failed, as it accepts anything from 0 to 110:
^((110)|(\d{0,2}))$
Can someone help me out with correcting that expression?
Thanks!