为了账号安全,请及时绑定邮箱和手机立即绑定

字符串替换问题?

字符串替换问题?

炎炎设计 2018-09-05 09:29:35
实现函数template()函数template('hello ${1}, ${2} is the best ${3}',['world','javascript','language']);//输出结果'hello world, javascript is the best language'function template(str,array){      }想到用正则表达式提取,但不知道怎么替换到原来的字符串?
查看完整描述

1 回答

?
米琪卡哇伊

TA贡献1998条经验 获得超6个赞

使用正则表达式进行匹配,如果配置位置对应的索引在数组中没有给出则以?替代

// 定义函数 

var template = function(template, txtArray) {

    return template.replace(/\$\{([1-9][0-9]*)\}/g, function(match,idx){

        var _index = parseInt(idx);

        if(txtArray[_index-1]) {

            return txtArray[_index-1];

        }else{

            return '?';

        }

    })

};


// 测试代码

console.log(template('hello ${1}, ${2} is the best ${3}', ['Miss Li', 'WildBerry', 'food']));

console.log(template('${1} + ${2} = ${3}', [2, 3, 5]));

console.log(template('${2}, ${4}, ${6}, ${12} ', [1,2,3,4,5,6,7,8]));


查看完整回答
反对 回复 2018-10-17
  • 1 回答
  • 0 关注
  • 524 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信