I'm trying:
\d{3}|\d{11}|\d{11}-\d{1}
to match three-digit numbers, eleven-digit numbers, eleven-digit followed by a hyphen, followed by one digit. But, it only matches three digit numbers!
I also tried \d{3}|\d{11}|\d{11}-\d{1}
but doesn't work.
Any ideas?