第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

字符串替換問(wèn)題?

字符串替換問(wèn)題?

炎炎設(shè)計(jì) 2018-09-05 09:29:35
實(shí)現(xiàn)函數(shù)template()函數(shù)template('hello ${1}, ${2} is the best ${3}',['world','javascript','language']);//輸出結(jié)果'hello world, javascript is the best language'function template(str,array){      }想到用正則表達(dá)式提取,但不知道怎么替換到原來(lái)的字符串?
查看完整描述

1 回答

?
米琪卡哇伊

TA貢獻(xiàn)1998條經(jīng)驗(yàn) 獲得超6個(gè)贊

使用正則表達(dá)式進(jìn)行匹配,如果配置位置對(duì)應(yīng)的索引在數(shù)組中沒(méi)有給出則以?替代

// 定義函數(shù) 

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 '?';

        }

    })

};


// 測(cè)試代碼

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]));


查看完整回答
反對(duì) 回復(fù) 2018-10-17
  • 1 回答
  • 0 關(guān)注
  • 545 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)