I need a regular expression to accept a max value of 99999.99 I have tried this: currencyPattern: /^(\d{0,5})(?:.\d{2})$/
but it accepts 123456 and 1234567 also.
I need a regular expression to accept a max value of 99999.99 I have tried this: currencyPattern: /^(\d{0,5})(?:.\d{2})$/
but it accepts 123456 and 1234567 also.