js实用函数集;

Menu

  • str.format()

str.format()
    String.prototype.format = function () {
        var values = arguments;
        return this.replace(/\{(\d+)\}/g, function (match, index) {
            if (values.length > index) {
                return values[index];
            } else {
                return "";
            }
        });
    };

    var str ='这是一个测试的字符串:{0} {1}'.format('Hello','world');
    document.write(str)  // 这是一个测试的字符串:Hello world

你可能感兴趣的:(js实用函数集;)