You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, noticed that your source to the stack overflow regex reference for e164 compliant phoneNumbers is incorrect - https://stackoverflow.com/a/23299989. In the comments of the thread it states:
The "+" is not optional in E.164 for services like Twilio, so remove the ? after the + ^\+[1-9]\d{1,14}$ –
Hey, noticed that your source to the stack overflow regex reference for e164 compliant phoneNumbers is incorrect - https://stackoverflow.com/a/23299989. In the comments of the thread it states:
This is backed up by the Twilio page: https://www.twilio.com/docs/glossary/what-e164 - they make reference to the correct regex:
^\+[1-9]\d{1,14}$
Therefore the regex must be the following:
The text was updated successfully, but these errors were encountered: