What would be the regex code to validate a number, the number should only be read if it is in between 10-13 digits
I'm using this Regex: /\d([0-9]{11,13})\z/
The problem is it should only accept digits between 11 and 13 if it exceeds 13 it still accepts it.
I want it to simply validate these kind of numbers:
12345678910 = 11 Digits
123456789101 = 12 Digits