JavaScript 中的电话号码格式

发布于 2024-12-09 19:42:52 字数 174 浏览 3 评论 0原文

我需要检查电话号码格式。

+33xxxxxxxxx

0033xxxxxxxxx

编辑0xxxxxxxxx

我怎样才能用(out)正则表达式做到这一点?

I need to check Format Phone Number.

+33xxxxxxxxx

0033xxxxxxxxx

EDIT : 0xxxxxxxxx

How can I do that with(out) regex ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

风铃鹿 2024-12-16 19:42:52

与之匹配的正则表达式是

(0033|\+33|0)?\d{9}

我使用 http://regexpal.com/ 进行快速正则表达式测试

The regex to match it would be this

(0033|\+33|0)?\d{9}

I use http://regexpal.com/ for quick regex testing

咽泪装欢 2024-12-16 19:42:52
if (/^(?:(?:\+|00)33|0)\d{9}$/.test(subject)) {
    // Successful match
} else {
    // Match attempt failed
}
if (/^(?:(?:\+|00)33|0)\d{9}$/.test(subject)) {
    // Successful match
} else {
    // Match attempt failed
}
酒几许 2024-12-16 19:42:52

PhoneFormat.com 有一个 JavaScript 库,其中包含一些格式化函数,您可以轻松地将它们放入项目中。它会接受你输入的任何数字并尝试将其转换为 e164 (+ 33252525252),并格式化它 (+33 2 52 52 52 52)

PhoneFormat.com has a javascript library that has some formatting functions that you could easily drop into your project. It will take whatever number you throw at it and try and convert it to e164 (+ 33252525252), and also format it (+33 2 52 52 52 52)

那请放手 2024-12-16 19:42:52

试试这个正则表达式: /^((\+|00)\d{2})?\d{9}$/

这与您给定的每个案例匹配 (+YYXXXXXXXXX00YYXXXXXXXXXXXXXXXXXX)。

编辑:匹配您的编辑:/^((\+|00)\d{2}|0)\d{9}$/

Try this regex: /^((\+|00)\d{2})?\d{9}$/

This matches each of your given cases (+YYXXXXXXXXX, 00YYXXXXXXXXX, XXXXXXXXX).

Edit: To match your edit: /^((\+|00)\d{2}|0)\d{9}$/

两仪 2024-12-16 19:42:52

这是验证您的示例的正则表达式:

/(\+|(00)|0)[0-9]{11}/.test(stringToTest)

This is a regex that validates your examples:

/(\+|(00)|0)[0-9]{11}/.test(stringToTest)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文