首页 > 移动平台 > 详细

手机号码格式转化为 344 格式

时间:2020-11-26 22:19:14      阅读:33      评论:0      收藏:0      [点我收藏+]
export function phoneSeparated(phoneNumber) {
  if (!phoneNumber) {
    return null;
  }
  let tel = phoneNumber.replace(/(^\s+)|(\s+$)/g, ‘‘);
  tel = tel.replace(/\s/g, ‘‘);
  if (!tel) {
    return null;
  }

  if (tel.length === 11) {
    tel = tel.substring(0, 3) + ‘-‘ + tel.substring(3, 7) + ‘-‘ + tel.substring(7, 11);
  } else if (tel.length === 12) {
    tel = tel.substring(0, 4) + ‘ ‘ + tel.substring(4, 8) + ‘-‘ + tel.substring(8, 12);
  }
  return tel;
}

 

手机号码格式转化为 344 格式

原文:https://www.cnblogs.com/qihang0/p/14043942.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!