I tried to match any number greater than 15 using the following regexp:
0*[1-9][6-9][0-9]*
But I can match only 2 digit number eg. I can unmatch successfully 12
or 13
(less than 15
) , whereas I am unable to match 105
, 124
etc..
Anyone help me out how to resolve this.