Skip to content

Create string formatter #44

@AndreOneti

Description

@AndreOneti

Jus formatter like

// First, checks if it isn't implemented yet.
if (!String.prototype.format) {
  String.prototype.format = function() {
    var args = arguments;
    return this.replace(/{(\d+)}/g, function(match, number) { 
      return typeof args[number] != 'undefined'
        ? args[number]
        : match
      ;
    });
  };
}

console.log("{0} is dead, but {1} is alive! {0} {2}".format("ASP", "ASP.NET"));
// ASP is dead, but ASP.NET is alive! ASP {2}

Metadata

Metadata

Assignees

No one assigned

    Labels

    featureNew implementation

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions