Skip to content

Instantly share code, notes, and snippets.

@riston
Created July 24, 2013 17:23
Show Gist options
  • Save riston/6072609 to your computer and use it in GitHub Desktop.
Save riston/6072609 to your computer and use it in GitHub Desktop.
//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
;
});
};
}
"{0} is dead, but {1} is alive! {0} {2}".format("ASP", "ASP.NET")
outputs
ASP is dead, but ASP.NET is alive! ASP {2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment