Skip to content

Instantly share code, notes, and snippets.

@probil
Created March 4, 2015 10:54
Show Gist options
  • Save probil/70979eefb6c90f349641 to your computer and use it in GitHub Desktop.
Save probil/70979eefb6c90f349641 to your computer and use it in GitHub Desktop.
String formatter with {0}/{1} for js
/** String formatter allows to do like this
/* "{0} is dead, but {1} is alive! {0} {2}".format("ASP", "ASP.NET")
**/
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;
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment