- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2017 10:05 AM
How to check regular expression for a text field. For example: In the text field user should needs to enter only 552 to 574 numbers .they should enter only numeric number within the specified numbers.how can we check this using regular expression or any other way.
Solved! Go to Solution.
- Labels:
-
Integrations
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2017 03:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2017 04:26 AM
Hi Subhajit,
A better way to do the same is ^azwv51(7[5-9]|[8-9][0-9])$ :
we capture either 75-to-79 or 80-to-99
you can get more detailed explanation here: https://regex101.com/ for every regex you put there.