format int to phone number

后端 未结 2 940
感动是毒
感动是毒 2021-01-06 09:19

Is there a way I can format for example: 0000000000 into (000)000-0000? I\'m returning a listbox which holds a collection of phone number which arent formated yet. What I wo

2条回答
  •  爱一瞬间的悲伤
    2021-01-06 09:34

    If you're saying that you want to do it on the client side, then given the phone number in a variable, you could do this:

    http://jsfiddle.net/HZbXv/

    var str = "0000000000";
    
    var res = '(' + str.substr(0,3) + ')' + str.substr(3,3) + '-' + str.substr(6);
    
    alert(res);
    

    or this:

    http://jsfiddle.net/HZbXv/1/

    var str = "0000000000";
    
    var res = str.replace(/(\d\d\d)(\d\d\d)(\d\d\d\d)/, '($1)$2-$3');
    
    alert(res);
    

    EDIT:

    As noted by @Nick Craver The second version can be shortened up with:

    var res = str.replace(/(\d{3})(\d{3})(\d{4})/, '($1)$2-$3');
    

提交回复
热议问题