Nodejs String Format format()

Here you can find the source of format()

Method Source Code

String.prototype.format = String.prototype.format = function() {
  var s = this,/*from  w w  w.j  a  v  a  2  s. c  o  m*/
    i = arguments.length;

  while (i--) {
    s = s.replace(new RegExp('\\{' + i + '\\}', 'gm'), arguments[i]);
  }
  return s;
};

Related

  1. format()
    String.prototype.format = String.prototype.f = function () {
        var s = this,
            i = arguments.length;
        while (i--) {
            s = s.replace(new RegExp('\\{' + i + '\\}', 'gm'), arguments[i]);
        return s;
    };
    
  2. format()
    String.prototype.format = String.prototype.f = function() {
        var s = this,
            i = arguments.length;
        while (i--) {
            s = s.replace(new RegExp('\\{' + i + '\\}', 'gm'), arguments[i]);
        return s;
    };
    
  3. format()
    String.prototype.format = String.prototype.f = function() {
      var s = this,
          i = arguments.length;
      while (i--) {
        s = s.replace(new RegExp('\\{' + i + '\\}', 'gm'), arguments[i]);
      return s;
    };
    
  4. format()
    'use strict';
    String.prototype.format = String.prototype.f = function() {
        var s = this,
            i = arguments.length;
        while (i--) {
            s = s.replace(new RegExp('\\{' + i + '\\}', 'gm'), arguments[i]);
        return s;
    };
    ...
    
  5. format(options)
    String.prototype.format = String.prototype.f = function(options) {
        options = options ? options : [];
        if (typeof options != "object") options = [options];
        var s = this,
            i = options.length;
        while (i--) {
            s = s.replace(new RegExp('\\{' + i + '\\}', 'gm'), options[i]);
        return s;
    ...
    
  6. format()
    String.prototype.format = String.prototype.format ||
    function () {
        var str = this.toString();
        if (arguments.length) {
            var t = typeof arguments[0];
            var key;
            var args = ("string" === t || "number" === t) ?
                Array.prototype.slice.call(arguments)
                : arguments[0];
    ...
    
  7. format()
    String.prototype.format = String.prototype.format || function () {
      var string = this
      for (var i = 0, j = arguments.length; i < j; i++) {
        string = string.replace(new RegExp('\\{' + i + '\\}', 'gm'), arguments[i])
      return string
    
  8. format()
    String.prototype.format = String.prototype.format || function format() {
        var args = arguments;
        return this.replace(/\{(\d+)\}/g, function($0, $1) {
            return args[+$1];
        });
    };
    
  9. format(object)
    String.prototype.format = function format(object) {
        let parsed = this;
        for (const option in object) {
            if ({}.hasOwnProperty.call(object, option)) {
                const regex = new RegExp(`#{${option}}`, 'g');
                parsed = parsed.replace(regex, object[option]);
        return parsed;
    ...