I am trying to use a regular expression which will validate input for values between 0.00 and 15.00 to a maximum of 2 decimal places.
Example of valid and invalid data:
Valid Data:
- 0.00
- 13.
- 1.01
- 14.99
- 15
Invalid Data:
- 15.01
- 13.111
- -1.14
- 0.001
- 00.02
- .25