Nodejs String Format format()

Here you can find the source of format()

Method Source Code

'use strict';//www. ja v a 2s.com

String.prototype.format = function() {
   var formatted = this;
   for (var arg in arguments) {
      formatted = formatted.replace('{' + arg + '}', arguments[arg]);
   }
   return formatted;
};

Related

  1. format()
    String.prototype.format = function()
        var args = arguments;
        return this.replace(/\{(\d+)\}/g,                
            function(m,i){
                return args[i];
            });
    
  2. format()
    String.prototype.format = function(){
        var args = arguments;
        return this.replace(/\{(\d)\}/g, function(a,b){
            return typeof args[b] != 'undefined' ? args[b] : a;
        });
    
  3. format()
    var util = require('util');
    String.prototype.format = function () {
        return util.format.apply(null,
                [ this.toString() ].concat(Array.prototype.slice.call(arguments)));
    };
    
  4. format()
    String.prototype.format = function(){
        var pattern = /\{\d+\}/g;
        var args = arguments;
        return this.replace(pattern, function(capture){ return args[capture.match(/\d+/)]; });
    
  5. format()
    String.prototype.format = function() {
      var formatted = this;
      _.forEach(arguments, function(arg, i) {
        formatted = formatted.replace("{" + i + "}", arg);
      });
      return formatted;
    };
    
  6. format()
    String.prototype.format = function() {
        var s = this,
            i = arguments.length
        while (i--) {
            s = s.replace(new RegExp('\\{' + i + '\\}', 'gm'), 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 args = arguments;
      return this.replace(/{(\d+)}/g, function(match, number) { 
        return typeof args[number] != 'undefined'
        ? args[number]
        : match
        ;
      });
    };
    ...
    
  9. format()
    var util = require('util');
    String.prototype.format = function() {
        var args = Array.prototype.slice.call(arguments);
        args.splice(0, 0, this.toString());
        return util.format.apply(null, args);
    };