Skip to content

Instantly share code, notes, and snippets.

@coreequip
Created September 3, 2014 13:22
Show Gist options
  • Save coreequip/79071a6799e163ed682d to your computer and use it in GitHub Desktop.
Save coreequip/79071a6799e163ed682d to your computer and use it in GitHub Desktop.
A String.format - function, Call: String.format('Text {0} und {1}', 'asdf', 'asdf');
String.prototype.format = function (B){var A=Array.prototype.slice.call(arguments,1);return B.replace(/\{(\d+)\}/g,function(C,D){return A[D]})}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment