我有这样的数组:
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";
我想找到该笔记的最后一次注释和用户。谁知道怎么样?在此先感谢您的回复。
答案 0 :(得分:1)
答案 1 :(得分:1)
试试这个:
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);
答案 2 :(得分:1)
for (var i = 0; i < notes; i++) {
if (notes[i].indexOf(search_date) != -1) {
// notes [i] contain your date
}
}
答案 3 :(得分:1)
var match = JSON.stringify(notes).match("\"([^,]*),date\:"+search_date+",note\:([^,]*)\"");
alert(match[1]);
alert(match[2]);
有效; - )
答案 4 :(得分:0)
这样的事情:
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 res = [];
for(var i = 0; i < notes.length; i++) {
var note = notes[i];
if(note.indexOf(search_date) !== -1) {
res.push(note.substring(note.indexOf('note:') + 1), note.length);
}
}
var noteYouWanted = res[res.length - 1];
答案 5 :(得分:0)
最后一次出现以及表现是否重要:
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'],
search = '17/2/2008',
notesLength = notes.length - 1,
counter,
highestIndex = null;
for (counter = notesLength; counter >= 0; counter--) {
if (notes[counter].indexOf(search) !== -1) {
highestIndex = counter;
break;
}
}
// do something with notes[highestIndex]
答案 6 :(得分:0)
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 user, note;
$.each(notes, function(i) {
var search = new RegExp('\\b' + search_date + '\\b','i');
// if search term is found
if (notes[i].match(search)) {
var arr = notes[i].split(',');
user = arr[0];
note = arr[2].substr(5);
}
}); // end loop
console.log(user);
console.log(note);