当前位置 : 主页 > 网络编程 > JavaScript >

Javascript字符串快速组装format

来源:互联网 收集:自由互联 发布时间:2021-06-30
快速组装字符串,类似c#里面的string.format function format(template) { var args = Array.prototype.slice.call(arguments, 1); if (args.length = 0) return template; return template.replace(/\{(\d+?)\}/g, function($0, $1) { var val
快速组装字符串,类似c#里面的string.format
function format(template) {
    var args = Array.prototype.slice.call(arguments, 1);
    if (args.length <= 0) return template;
    return template.replace(/\{(\d+?)\}/g, function($0, $1) {
        var val = args[parseInt($1)];
        if (val === undefined) return "";
        return val;
    });
}
使用说明
format('{0}-{1}', 'anlige', 23);
上一篇:获取URL地址的参数
下一篇:clipboard.min.js
网友评论