| Title |
Test
Find
Positive non-zero decimal or integer
|
| Expression |
(^([0-9]*[.][0-9]*[1-9]+[0-9]*)$)|(^([0-9]*[1-9]+[0-9]*[.][0-9]+)$)|(^([1-9]+[0-9]*)$) |
| Description |
If you want to check for positive and nonzero real numbers (both integer and decimal are supported). |
| Matches |
1.234 | 1234 | 0.123 | 01.2345 |
| Non-Matches |
0 | 0.0 | -123.45 | -12345 | abc123 | 12..34 |
| Author |
Rating:
Anupom Syam
|
| Source |
|
| Your Rating |
|