I'm looking for a regex to match decimal numbers only, but to fail on integers.
For example, the following numbers should pass
0.00
1.00
-1.00
3.3
2.22123
But the following should fail
-1
-3
4
559
I don't know why this is so hard to find/create, but I'm not having any luck. All available regexes that I found online don't exclude integers.