将 10 位数字字符串格式化为带连字符的电话号码

发布于 2024-08-23 07:02:54 字数 128 浏览 4 评论 0原文

我有一个包含十位电话号码的字符串,我想用连字符对其进行格式化。

我正在寻找一种将 123456790 转换为 123-456-7890 的方法,因为电话号码通常在美国采用格式。

I have a string containing a ten-digit phone number and I want to format it with hyphens.

I am seeking a way to convert 123456790 to 123-456-7890 as phone numbers are typically formatted in the USA.

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

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

发布评论

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

评论(6

何以心动 2024-08-30 07:02:54
$areacode = substr($phone, 0, 3);
$prefix   = substr($phone, 3, 3);
$number   = substr($phone, 6, 4);

echo "$areacode-$prefix-$number";

您也可以使用正则表达式来做到这一点:

preg_match("/(\d{3})(\d{3})(\d{4})/",$phone,$matches);
echo "$matches[1]-$matches[2]-$matches[3]";

还有更多方法,但其中任何一种都可以。

$areacode = substr($phone, 0, 3);
$prefix   = substr($phone, 3, 3);
$number   = substr($phone, 6, 4);

echo "$areacode-$prefix-$number";

You could also do it with regular expressions:

preg_match("/(\d{3})(\d{3})(\d{4})/",$phone,$matches);
echo "$matches[1]-$matches[2]-$matches[3]";

There are more ways, but either will work.

落花浅忆 2024-08-30 07:02:54

以下代码还将验证您的输入。

preg_match('/^(\d{3})(\d{3})(\d{4})$/', $phone, $matches);

if ($matches) {
    echo(implode('-', array_slice($matches, 1)));
}
else {
    echo($phone); // you might want to handle wrong format another way
}

The following code will also validate your input.

preg_match('/^(\d{3})(\d{3})(\d{4})$/', $phone, $matches);

if ($matches) {
    echo(implode('-', array_slice($matches, 1)));
}
else {
    echo($phone); // you might want to handle wrong format another way
}
人心善变 2024-08-30 07:02:54
$p = $phone; 
echo "$p[0]$p[1]$p[2]-$p[3]$p[4]-$p[5]$p[6]$p[7]$p[8]";

最少的函数调用。 :)

$p = $phone; 
echo "$p[0]$p[1]$p[2]-$p[3]$p[4]-$p[5]$p[6]$p[7]$p[8]";

Fewest function calls. :)

霞映澄塘 2024-08-30 07:02:54
echo substr($phone, 0, 3) . '-' . substr($phone, 3, 3) . '-' . substr($phone, 6);

substr()

echo substr($phone, 0, 3) . '-' . substr($phone, 3, 3) . '-' . substr($phone, 6);

substr()

自控 2024-08-30 07:02:54

更多正则表达式:)

$phone = "1234567890";
echo preg_replace('/^(\d{3})(\d{3})(\d{4})$/', '\1-\2-\3', $phone);

More regexp :)

$phone = "1234567890";
echo preg_replace('/^(\d{3})(\d{3})(\d{4})$/', '\1-\2-\3', $phone);
好多鱼好多余 2024-08-30 07:02:54

如果使用正则表达式,我不会费心创建一个临时数组来转换回字符串。相反,只需告诉 preg_replace() 在每个三位数字序列后最多进行两次替换。

作为非正则表达式替代方案,您可以解析字符串并使用 sscanf()vprintf() 占位符重新格式化它。

代码: (Demo)

$string = '1234567890';

echo preg_replace('/\d{3}\K/', '-', $string, 2);
// 123-456-7890

或者

vprintf('%s-%s-%s', sscanf($string, '%3s%3s%4s'));
// 123-456-7890

或者

echo implode('-', sscanf($string, '%3s%3s%4s'));
// 123-456-7890

对于这样一个简单的任务,涉及一个库是超级杀伤力,但对于更多复杂的任务有可用的库:

If using a regular expression, I would not bother creating a temporary array to conver back into a string. Instead just tell preg_replace() to make a maximum of two replacements after each sequence of three digits.

As a non-regex alternative, you could parse the string and reformat it using placeholders with sscanf() and vprintf().

Codes: (Demo)

$string = '1234567890';

echo preg_replace('/\d{3}\K/', '-', $string, 2);
// 123-456-7890

Or

vprintf('%s-%s-%s', sscanf($string, '%3s%3s%4s'));
// 123-456-7890

Or

echo implode('-', sscanf($string, '%3s%3s%4s'));
// 123-456-7890

For such a simple task, involving a library is super-overkill, but for more complicated tasks there are libraries available:

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