当前位置: 代码迷 >> JavaScript >> JS相仿Java String.format的函数
  详细解决方案

JS相仿Java String.format的函数

热度:308   发布时间:2013-01-26 13:47:02.0
JS类似Java String.format的函数
String.prototype.format = String.prototype.f = function () {
    var s = this,
        i = arguments.length;

    while (i--) {
        s = s.replace(new RegExp('\\{' + i + '\\}', 'gm'), arguments[i]);
    }
    return s;
};


使用:
"chen {0} hua".format("zeng")


结果:
"chen zeng hua"
  相关解决方案