Regular expression matching E.164 formatted phone numbers

后端 未结 7 1738
栀梦
栀梦 2020-12-23 16:14

I need to add a regular expression that matches all possible valid E.164 formatted phone numbers.

This regex works fine for for North American phone numbers, but I

7条回答
  •  既然无缘
    2020-12-23 16:48

    This RegEx ^\\+?[0-9]{1,3}[ 1-9]\\d{1,14}$ also works without Invalid regular expression.

提交回复
热议问题