我的javascript函数中有一个像12860000005
这样的字符串。我需要将其拆分为1-286-000-0005
,然后在“确认”框中显示。
任何帮助将受到高度赞赏。
提前谢谢。
var string = 12860000005;
//expected result i want 1-286-000-0005
答案 0 :(得分:1)
使用此正则表达式
$(".phNum").text(function(i, text) {
text = text.replace(/(\d{1})(\d{3})(\d{3})(\d{4})/, "$1-$2-$3-$4");
return text;
});