I have a phone number input field where it must:
- Allows spaces and "-" and "+" characters.
- Have 12 characters max including the special characters (ex +12345678910).
I tried but my best result was ng-pattern="/^\+?\d{0,11}?$/"
.
How to make this work?