码迷,mamicode.com
首页 > 移动开发 > 详细

手机号中间四位加*号

时间:2017-07-15 18:56:15      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:cti   保留   div   bst   code   arp   str   i++   sub   


function plusXing (str,frontLen,endLen) { 
    var len = str.length-frontLen-endLen;
    var xing = ‘‘;
    for (var i=0;i<len;i++) {
        xing+=‘*‘;
    }
    return str.substr(0,frontLen)+xing+str.substr(str.length-endLen);
}
//字符串  前面保留位数 后面保留位数

  

手机号中间四位加*号

标签:cti   保留   div   bst   code   arp   str   i++   sub   

原文地址:http://www.cnblogs.com/vali/p/7183470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!