码迷,mamicode.com
首页 > 编程语言 > 详细

javascript 仿 C# format

时间:2016-04-15 13:41:30      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

String.prototype.format = function() {
        var args = arguments;
        return this.replace(/\{(\d+)\}/g, function(g0, g1) {
            return args[+g1];
        });

}

"hello {0},{0}‘s age is {1}".format("tom",12)

 

javascript 仿 C# format

标签:

原文地址:http://www.cnblogs.com/jh1994/p/5394875.html

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