看板 Farland
作者 標題 [程式] String.Format for Javascript
時間 2013年02月20日 Wed. PM 12:04:35
code:
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;
});
};
}
example:
'Hell {0}! {1} test'.format('world', 'lalala')
output:
'Hell world! lalala test'
--
※ 作者: Farland 時間: 2013-02-20 12:04:35
※ 編輯: Farland 時間: 2013-02-20 12:07:12
※ 看板: Farland 文章推薦值: 0 目前人氣: 0 累積人氣: 181
回列表(←)
分享