gpt4 book ai didi

javascript 在数组元素中搜索

转载 作者:行者123 更新时间:2023-11-30 10:29:52 25 4
gpt4 key购买 nike

我有这样的数组:

var notes = ["user1,date:13/2/2008,note:blablabla", "user1,date:15/2/2008,note:blablabla", "user1,date:17/2/2008,note:blablabla", "user1,date:13/3/2008,note:blablabla"];

我有

var search_date="17/2/2008";

我想找到最后一次出现的笔记和该笔记的用户。任何人都知道如何?预先感谢您的回复。

最佳答案

试试这个:

var highestIndex = 0;
for (var i = 0; i < notes.length; i++){
if (notes[i].indexOf(search_date) != -1){
highestIndex = i;
}
}
//after for loop, highestIndex contains the last index containing the search date.

然后获取用户,可以这样解析:

var user = notes[highestIndex].substring(0, notes[highestIndex].indexOf(',') - 1);

关于javascript 在数组元素中搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17490400/

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