I am trying to exclude all decimal numbers below 200
. For example:
50.123 invalid
150.103 invalid
205.111 valid
With the ([0-9][0-9])|(1[0-9][0-9])\.*
reg expression, I am getting the following results:
50.123 valid but should be invalid
150.103 invalid
205.111 valid
Can anyone tell me why any decimal number < 100 is valid?