We have two needs for a telephone property.
- Must be formatted (xxx) xxx-xxxx
- Must not start with (999)
We already have the regexp for #1 ^([(]{1}[0-9]{3}[)]{1}[ ]{1}[0-9]{3}[-]{1}[0-9]{4})$
I was wondering if there is away to also add #2 - Must not start with (999)?
Thank you