您的位置:首页 > 其它

手机号码处理为344格式

2017-07-18 16:57 1581 查看
// 去掉字符串中所有空格(包括中间空格,需要设置第2个参数为:g)
function trim(str, is_global) {
var result;
result = str.replace(/(^\s+)|(\s+$)/g, "");
if (is_global && is_global.toLowerCase() == "g") {
result = result.replace(/\s/g, "");
}
return result;
}

// 判断是否是手机号码格式
function isPhone(str) {
var reg = /^1(3|4|5|7|8)\d{9}$/;
return reg.test(trim(str, 'g'));
}

// 手机号码格式转化为 344 格式 (188 3886 9199)
function phoneSeparated(phoneNumber) {
let tel = trim(phoneNumber, 'g');
if (isPhone(tel)) {
tel = tel.substring(0, 3) + ' ' + tel.substring(3, 7) + ' ' + tel.substring(7, 11);
}
return tel;
}

phoneSeparated("18838869199")  // "188 3886 9199"
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: