| Title |
Test
Find
Non localised currency format
|
| Expression |
^(\d?)*(\.\d{1}|\.\d{2})?$ |
| Description |
Expression to validate currency formatted numbers without the currency symbol |
| Matches |
153 | 33.48 | 786.1 | 1567863483.33 |
| Non-Matches |
-123 | 8524.258 | eo45 |
| Author |
Rating:
Paul Verhulpen
|
| Source |
|
| Your Rating |
|
Title: MinMax matching
Name: TWiStErRob
Date: 8/2/2008 8:21:38 AM
Comment:
Instead of (\.\d{1}|\.\d{2})? you can use (\.\d{1,2})?