gpt4 book ai didi

javascript - 如何替换数组中的字符串

转载 作者:行者123 更新时间:2023-11-30 13:38:17 28 4
gpt4 key购买 nike

我正在编写一段代码,该代码使用正则表达式来查找/替换聊天中的表情符号。但是,我想使用相同的值数组并将它们作为引用输出。

正则表达式适用于我的搜索,但当我尝试在输出正则表达式搜索字符串之前替换它以寻求帮助时,我仍然以斜杠结尾。

:\)
:\(

var emotes = [];
emotes[0] = new Array(':\\\)', 'happy.png');
emotes[1] = new Array(':\\\(', 'sad.png');

function listEmotes(){
var emotestext = '';
for(var i = 0; i < emotes.length; i++){

//Tried this and it doesn't seem to work
//var emote = emotes[i][0];
//emote.replace('\\', '');

emotestext += '<ul>' + emote + ' <img src="emotes/' + emotes[i][1] + '"></ul>';
}

return emotestext;
}

最佳答案

您的问题是 str.replace 不会更改原始变量,而是返回一个新变量。试试这个:

var emotes = [
[':\\\)', 'happy.png'],
[':\\\(', 'sad.png']
];

function listEmotes(){
var emotestext = '';
for(var i = 0; i < emotes.length; i++){
var emote = emotes[i][0].replace('\\', ''); // See what I did here?

emotestext += '<ul>' + emote + ' <img src="emotes/' + emotes[i][1] + '"></ul>';
}

return emotestext;
}

关于javascript - 如何替换数组中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3647253/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com