10位字符串到电话格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10位字符串到电话格式相关的知识,希望对你有一定的参考价值。
Formats a 10-digit phone number into a good format (123) 555-1234
/** * Format phone numbers */ function formatPhone(phonenum) { var regexObj = /^(?:+?1[-. ]?)?(?:(?([0-9]{3}))?[-. ]?)?([0-9]{3})[-. ]?([0-9]{4})$/; if (regexObj.test(phonenum)) { var parts = phonenum.match(regexObj); var phone = ""; if (parts[1]) { phone += "+1 (" + parts[1] + ") "; } phone += parts[2] + "-" + parts[3]; return phone; } else { //invalid phone number return phonenum; } }
以上是关于10位字符串到电话格式的主要内容,如果未能解决你的问题,请参考以下文章