Nodejs String Format format()

Here you can find the source of format()

Method Source Code

/*!/* w  ww  . j a  v  a  2 s  . c  o  m*/
 * Global JavaScript by @zjhzxhz
 *
 * Copyright 2015 Contributors
 * Released under the GPL v3 license
 * http://opensource.org/licenses/GPL-3.0
 */

String.prototype.format = function() {
    var newStr = this, i = 0;
    while (/%s/.test(newStr)) {
        newStr = newStr.replace("%s", arguments[i++])
    }
    return newStr;
}

Related

  1. format()
    String.prototype.format=function()  
        if(arguments.length==0) return this;  
        for(var s=this, i=0; i<arguments.length; i++)  
          s=s.replace(new RegExp("\\{"+i+"\\}","g"), arguments[i]);  
        return s;  
      };
    
  2. format()
    String.prototype.format = function() {
        var str = this.toString();
        if (!arguments.length)
            return str;
        var args = typeof arguments[0],
            args = (("string" == args || "number" == args) ? arguments : arguments[0]);
        for (arg in args)
            str = str.replace(RegExp("\\{" + arg + "\\}", "gi"), args[arg]);
        return str;
    ...
    
  3. format()
    String.prototype.format = function () {
        var result = this.toString();
        var arg = arguments.length == 1 && typeof arguments[0] == 'object' ? arguments[0] : arguments;
        for (var value in arg) {
            result = result.split('{' + value + '}').join(arg[value]);
        return result;
    
  4. format()
    String.prototype.format = function () {
        var formatted = this;
        for (var i = 0; i < arguments.length; i++) {
            var regexp = new RegExp('\\{' + i + '\\}', 'gi');
            formatted = formatted.replace(regexp, arguments[i]);
        return formatted;
    };
    String.prototype.contains = function (it) { return this.indexOf(it) != -1; };
    ...
    
  5. format()
    'use strict';
    String.prototype.format = function() {
        var content = this;
        for (var i = 0; i < arguments.length; i++) {
            var replacement = '{' + i + '}';
            content = content.replace(replacement, arguments[i]);
        return content;
    };
    ...
    
  6. format()
    String.prototype.format = function () {
        if (arguments.length === 0)
            return this;
        for (var s = this, i = 0; i < arguments.length; i++)
            s = s.replace(new RegExp("\\{" + i + "\\}", "g"), arguments[i]);
        return s;
    };
    
  7. format()
    String.prototype.format = function () {
        var formatted = this;
        for (var arg in arguments) {
            formatted = formatted.replace("{" + arg + "}", arguments[arg]);
        return formatted;
    };
    
  8. format()
    String.prototype.format = function () {
        var formatted = this;
        for (var i = 0; i < arguments.length; i++) {
            var regexp = new RegExp('\\{' + i + '\\}', 'gi');
            formatted = formatted.replace(regexp, arguments[i]);
        return formatted;
    };
    String.prototype.replaceAll = function (find, replace) {
    ...
    
  9. format()
    String.prototype.format = function() {
        var args = arguments;
        return this.replace(/\{(\d+)\}/g, function() {
            return args[arguments[1]];
        });
    };