将 10 位数字字符串格式化为带连字符的电话号码
我有一个包含十位电话号码的字符串,我想用连字符对其进行格式化。
我正在寻找一种将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您也可以使用正则表达式来做到这一点:
还有更多方法,但其中任何一种都可以。
You could also do it with regular expressions:
There are more ways, but either will work.
以下代码还将验证您的输入。
The following code will also validate your input.
最少的函数调用。 :)
Fewest function calls. :)
substr()
substr()
更多正则表达式:)
More regexp :)
如果使用正则表达式,我不会费心创建一个临时数组来转换回字符串。相反,只需告诉
preg_replace()
在每个三位数字序列后最多进行两次替换。作为非正则表达式替代方案,您可以解析字符串并使用
sscanf()
和vprintf()
占位符重新格式化它。代码: (Demo)
或者
或者
对于这样一个简单的任务,涉及一个库是超级杀伤力,但对于更多复杂的任务有可用的库:
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()
andvprintf()
.Codes: (Demo)
Or
Or
For such a simple task, involving a library is super-overkill, but for more complicated tasks there are libraries available: