PHP:如何为 PT Mobile 手机创建 preg_match() 的正则表达式?

发布于 2024-09-10 01:53:01 字数 354 浏览 5 评论 0原文

我对 PHP 上的 Regexp 比较新...

我需要创建一个 Regexp 来过滤葡萄牙手机,有人可以帮助我并解释我是如何做到的吗? (据我了解)

规则:

The integer/string must have 9chars;
The first char must be a '9';
The second one can be '1,2,3,6' (Chars are separeted by commas);
The other chars must be in range of '0-9';

i'm newer related to Regexp on PHP...

I need to create an Regexp to filter Portuguese Mobile Phones, can anybody help me and explain how i do it? (To i understand it)

Rules:

The integer/string must have 9chars;
The first char must be a '9';
The second one can be '1,2,3,6' (Chars are separeted by commas);
The other chars must be in range of '0-9';

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

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

发布评论

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

评论(1

情痴 2024-09-17 01:53:01
#9[1236][0-9]{7}#

应该可以了;)

说明:

# <-- delimiter
    9 <-- 9
    [1236] <-- either of the chars in the brackets
    [0-9]{7} <-- 0-9  7 times
# <-- delimiter

使用:如果您想检查某个电话号码是否是有效的电话号码,请使用:

$isValid = preg_match('#^9[1236][0-9]{7}$#', $phoneNumber);

注意 ^$。这些确保只有电话号码而没有其他内容。

#9[1236][0-9]{7}#

That should do it ;)

Explanation:

# <-- delimiter
    9 <-- 9
    [1236] <-- either of the chars in the brackets
    [0-9]{7} <-- 0-9  7 times
# <-- delimiter

Use: If you want to check whether something is a valid phone number, use:

$isValid = preg_match('#^9[1236][0-9]{7}$#', $phoneNumber);

Notice the ^ and $. These ensure there is only the phone number and nothing more.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文