I need a RegEx for a numeric value with up to two decimal places greater than zero and may or may not have a zero in the ones column. I should also add….whole numbers are fine. See somments below but there could be leading or trailing white spaces
Good values:
.1
0.1
1.12
123.12
92
092
092.13
Error values:
0
0.0
0.00
00
1.234
-1
-1.2
Anything less than zero
How about this:
Explanation:
Test in Python: