我使用此模式检查电话号码的验证
^[0-9\-\+]{9,15}$
它适用于0771234567和0771234567,
但我想它的工作原理077-1234567和077-1234567和077-1-23-45-67和077-123-45-6-7
我应该在模式中更改什么?
请参阅此SO Post
原文链接:https://www.f2er.com/regex/357770.htmlexample of a regular expression in jquery for phone numbers
/\(?([0-9]{3})\)?([ .-]?)([0-9]{3})\2([0-9]{4})/
>(123)456 7899
>(123).456.7899
>(123)-456-7899
> 123-456-7899
> 123 456 7899
> 1234567899