Menu
- str.format()
str.format()
String.prototype.format = function () {
var values = arguments;
return this.replace(/\{(\d+)\}/g, function (match, index) {
if (values.length > index) {
return values[index];
} else {
return "";
}
});
};
var str ='这是一个测试的字符串:{0} {1}'.format('Hello','world');
document.write(str) // 这是一个测试的字符串:Hello world
网友评论