Reputation: 97
Any one can tell me the regex expressions to validate the following?
1) My account number should be 3-7 digits (and only numbers) 2) My meter reading number should be exactly 6 digits (Only numbers)
Thanks
Upvotes: 1
Views: 1299
Reputation: 262939
You can use \d{3,7} and \d{6}, respectively.
\d{3,7}
\d{6}
Upvotes: 2