Nodejs String Format format()

Here you can find the source of format()

Method Source Code

// Stole this code from stackoverflow
// Not from a stackoverflow post, but literally from stackoverflow's source code
String.prototype.format = function() {
    "use strict";
    var e = this.toString();
    if (!arguments.length) {
        return e;
    }/*from   www  . j  a  v  a 2  s  . c  o m*/
    var t = typeof arguments[0],
        n = "string" == t || "number" == t ? Array.prototype.slice.call(arguments) : arguments[0];

    for (var i in n) {
        e = e.replace(new RegExp("\\{" + i + "\\}", "gi"), n[i]);
    }

    return e;
}

Related

  1. format()
    String.prototype.format = function() {
      var args = arguments;
      return this.replace(/{(\d+)}/g, function(match, number) { 
        return typeof args[number] != 'undefined'
          ? args[number]
          : match
        ;
      });
    };
    ...
    
  2. format()
    'use strict';
    String.prototype.format = function() {
      var self = this;
      for(var i = 0; i < arguments.length; i += 1) {
        var reg = new RegExp("\\{" + i + "\\}", "gm");
        self = self.replace(reg, arguments[i]);
      return self;
    };
    ...
    
  3. format()
    String.prototype.format = function() {
        var args = arguments;
        return this.replace(/\$\{p(\d)\}/g, (match, id) => {
            return args[id]
        })
    String.prototype.sid = function() {
        return `${this.substring(0, 7)}...`
    
  4. format()
    String.prototype.format = function(){
      return this.replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1,");
    };
    
  5. 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;
    };
    
  6. 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;
    };
    function pad(n) {
    ...
    
  7. format()
    String.prototype.format = function() { 
      s = this;
      if (arguments.length == 1 && arguments[0].constructor == Object) {
        for (var key in arguments[0]) {
          s = s.replace(new RegExp("\\{" + key + "\\}", "g"), arguments[0][key]);
      } else {
        for (var i = 0; i < arguments.length; i++) {
          s = s.replace(new RegExp("\\{" + (i+1) + "\\}", "g"), arguments[i]);
    ...
    
  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;
      })
    function getUrlParam(name){
    ...
    
  9. format()
    'use strict';
    String.prototype.format = function () {
        var formatted = this,
            i;
        for (i = 0; i < arguments.length; i += 1) {
            formatted = formatted.replace("{" + i + "}", arguments[i]);
        return formatted;
    };
    ...