Here you can find the source of format()
String.prototype.format = function() { var source = this; for (var i = 0; i <= arguments.length - 1; i++) { var reg = new RegExp("\\{" + i + "\\}", "gm"); source = source.replace(reg, arguments[i]); }// www . j a v a 2 s . c o m return source; }; Date.prototype.format = function (fmt) { //author: meizz var o = { "M+": this.getMonth() + 1, //?? "D+": this.getDate(), //? "h+": this.getHours(), //?? "m+": this.getMinutes(), //? "s+": this.getSeconds(), //? "q+": Math.floor((this.getMonth() + 3) / 3), //?? "S": this.getMilliseconds() //?? }; if (/(Y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; };
String.prototype.format = function() { var args = arguments; return this.replace(/\{(\d+)\}/g, function(orig,num) { return typeof args[num] != 'undefined' ? args[num] : orig; }); };
String.prototype.format = function() { var args = arguments; return this.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); };
String.prototype.format = function() { var placeholderREG = /\{(\d+)\}/g; var args = arguments; return this.replace(placeholderREG, function(holder, num) { return args[num]; });
String.prototype.format = function() { var formatted = this; for( var arg in arguments ) { formatted = formatted.replace("{" + arg + "}", arguments[arg]); return formatted; }; function assert(condition, msg) { if (!condition) { ...
'use strict'; String.prototype.format = function () { var args = arguments; return this.replace(/\{(\d+)\}/g, function (m, n) { return args[n]; }); }; String.prototype.escapeRegExp = function () { return this.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1"); ...
String.prototype.format = function() { var formatted = this; for (arg in arguments) { formatted = formatted.replace('{' + arg + '}', arguments[arg]); return formatted; };
String.prototype.format = function() { var args = arguments; return this.replace(/\{(\d+)\}/g, function(m, i) { return args[i]; }); }; String.prototype.encodeHTML = function () { var s = this.valueOf(); ...
String.format = function () { var s = arguments[0]; for (var i = 0; i < arguments.length - 1; i++) { var reg = new RegExp("\\{" + i + "\\}", "gm"); s = s.replace(reg, arguments[i + 1]); return s; String.prototype.format = function () { ...
String.prototype.format = function () { var args = arguments; var reg = /\{(\d+)}/g; return this.replace(reg, function (g0, g1) { return args[+g1]; }); }; var str = "this is :{0} and {1} , and {0}".format("arg1","arg2") var main = "Scripts/main"; ...