Nodejs String Format format()

Here you can find the source of format()

Method Source Code

// C#-inspired string formatting
String.prototype.format = function () {
    var args = arguments;
    return this.replace(/{(\d+)}/g, function (match, number) {
        return typeof args[number] != 'undefined' ? args[number] : match;
    });//from ww w.j  av  a 2  s .c  om
};

Related

  1. format()
    String.prototype.format = function() {
        var args = arguments;
        return this.replace(/\{(\d+)\}/g, function() {
            return args[arguments[1]];
        });
    };
    
  2. format()
    String.prototype.format = function () {
      var formatted = this;
      for (var prop in arguments[0]) {
        var regexp = new RegExp('\\{' + prop + '\\}', 'gi');
        formatted = formatted.replace(regexp, arguments[0][prop]);
      return formatted;
    };
    if (typeof String.prototype.trim !== 'function') {
    ...
    
  3. 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;
    };
    
  4. format()
    String.prototype.format = function() {
        var txt = this, i = arguments.length; while (i--) {
            txt = txt.replace (
                new RegExp('\\{' + i + '\\}', 'gm'), arguments[i]
            );
        return txt;
    };
    
  5. format()
    String.prototype.format = function() {
      var args = arguments;
      return this.replace(/\{(\d+)\}/g, function(match, number) {
        return typeof args[number] != 'undefined' ? args[number] : match;
      });
    };
    
  6. format()
    String.prototype.format = function () {
        var str = this;
        for (var i = 0; i < arguments.length; i++) {
            var reg = new RegExp("\\{" + i + "\\}", "gm");
            str = str.replace(reg, arguments[i]);
        return str;
    
  7. format()
    String.prototype.format = function() {
      var args = arguments;
      return this.replace(/{(\d+)}/g, function(match, number) { 
        return typeof args[number] != 'undefined'
          ? args[number]
          : match
        ;
      });
    };
    ...
    
  8. format()
    String.prototype.format = function () {
      var formatted = this;
      for (var i = 0; i < arguments.length; i++) {
        formatted = formatted.replace(
          RegExp('\\{' + i + '\\}', 'g'), arguments[i]);
      return formatted;
    };
    
  9. format()
    String.prototype.format = function() {
        var formattedString = this;
        for (var i = 0; i < arguments.length; i++) {
            var reg = new RegExp('\\{' + i + '\\}', 'gm');
            formattedString = formattedString.replace(reg, arguments[i]);
        return formattedString;
    };