顯示廣告
隱藏 ✕
看板 Farland
作者 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 累積人氣: 177 
r)回覆 e)編輯 d)刪除 M)收藏 ^x)轉錄 同主題: =)首篇 [)上篇 ])下篇