- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2022 11:39 PM
Hello I'm trying to figure out what regex values must be used in order to validate a field to a value like this:
Ex.
100,000.00
50,000.00
1,000,000.00
I have a regex validation but it accepts numbers without decimal places. ^(?!0\.00)\d{1,3}(,\d{3})*(\.\d\d)?$
Solved! Go to Solution.
- Labels:
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2022 11:47 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2022 11:47 PM
UPDATE:
Solve it using this -> ^[0-9]{1,3}(,[0-9]{3})*\.[0-9]+$

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2022 12:11 PM
Is this an example of what you text validation looks like now?
50,000.00
I tried your string and 50,000.00 comes up as "Not a Valid Currency"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2025 09:26 AM - edited ‎07-10-2025 10:06 AM
[deleted]