Skip to content

Instantly share code, notes, and snippets.

@IUnknown68
Created May 25, 2015 14:02
Show Gist options
  • Save IUnknown68/a86d7eb7dcba77b6bef7 to your computer and use it in GitHub Desktop.
Save IUnknown68/a86d7eb7dcba77b6bef7 to your computer and use it in GitHub Desktop.
function formatS(s) {
var args = Array.prototype.slice.call(arguments);
var _replFn = function(all, before, index) {
return before + args[parseInt(index)];
}
return s.replace(formatS._m, _replFn).replace('%%', '%');
}
formatS._m = /([^%])%([0-9]+)/g;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment