Hi all,
Been at this for a while now and finally gave in to seek help.
Basically, I'm trying to setup a regular expression for a decimal. Where there's 1 to 7 integers in front of the decimal point, and 1 to 2 after the decimal point.
This is what I got so far:
"/(\d{1,7})\.(\d{1,2})/"
It ALMOST works.
This number should be the absolute maximum that can match: 1234567.12
These numbers are matching, when they shouldn't be
12345678.12
1234567.123
As you can see, it's matching passed the "maximum".
Any ideas?