I have a very standard ASP.NET RegularExpressionValidator and I just need the ValidationExpression to make it so 2 decimal places are required!
Good Examples..
234234.00
2342342.12
234.11
2.22
3.33
Bad Examples
3242.1
2342
3.1
.22
I tried /^\d{0,4}(\.\d{0,2})?$/
and I can't get it to work.