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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何用數(shù)組的另一個值替換javascript中數(shù)組的值?

如何用數(shù)組的另一個值替換javascript中數(shù)組的值?

叮當(dāng)貓咪 2023-05-11 10:12:17
我正在嘗試用另一個數(shù)組替換字符串中存在的數(shù)組中的值。在 Javascript 中執(zhí)行此操作的最佳方法是什么?這是我的代碼:var string = "I've to but the Item1 along with Item2 and Item3. From the Item4."var array1 = ['Item1', 'Item2', 'Item3', 'Item4']var array2 = ['Product1', 'Product2', 'Product3', 'Product4']輸出應(yīng)該是這樣的var replaced = "I've to but the Product1 along with Product2 and Product3. From the Product4."兩個數(shù)組中的每個值都完全不同。
查看完整描述

3 回答

?
森林海

TA貢獻(xiàn)2011條經(jīng)驗 獲得超2個贊

您可以使用String.prototype.replaceAll替換字符串

const input = "I've to but the Item1 along with Item2 and Item3. From the Item4.";

const original = ['Item1', 'Item2', 'Item3', 'Item4'];

const target = ['Product1', 'Product2', 'Product3', 'Product4'];


let result = input;

original.forEach((item, index) => {

? result = result.replaceAll(item, target[index]);

});


console.log(result);



查看完整回答
反對 回復(fù) 2023-05-11
?
開滿天機(jī)

TA貢獻(xiàn)1786條經(jīng)驗 獲得超13個贊

我希望我有所幫助。


var array1 = ['Item1', 'Item2', 'Item3', 'Item4'];

var array2 = ['Product1', 'Product2', 'Product3', 'Product4'];

var string = "I've to but the Item1 along with Item2 and Item3. From the Item4.";


for (var i = 0; i < array1.length; i++) {

    var string = string.replace(array1[i], array2[i]);

}


console.log(string);


查看完整回答
反對 回復(fù) 2023-05-11
?
互換的青春

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

您可以使用模板文字,例如


var array1 = [Item1, Item2, Item3, Item4];

var array2 = [Product1, Product2, Product3, Product4]

var string = `I've to but the ${array1[0]} along with ${array1[1]} and ${array1[2]}. From the 

${array1[3]}.`

var replaced = `I've to but the ${array2[0]} along with ${array2[1]} and ${array2[2]}. 

From the ${array2[3]}.`


查看完整回答
反對 回復(fù) 2023-05-11
  • 3 回答
  • 0 關(guān)注
  • 168 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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