多个日期范围内的开始和结束日期

时间:2010-02-11 11:46:10

标签: javascript date range

嗨,我的问题有点特别或者可能不是。但问题是我在一个数组中解析日期范围,我需要在范围内找到开始日期和结束日期。我不知道我是否解释得很好,但如果您需要更多信息,请告诉我。

e.g。 [2010-7-11,2010-7-12,2010-7-13,2010-9-01,2010-9-9,....]

现在

2010-7-11开始和2010-7-13结束

2010-9-01开始2010-9-02结束

对于数组中的整个范围

提前致谢

1 个答案:

答案 0 :(得分:0)

这里有些快速而又脏的东西。它期望dates数组已按升序排序。

var dates = ["2010-7-11", "2010-7-12", "2010-7-13", "2010-9-01", "2010-9-02"],
    startDates = [], endDates = [],
    lastDate = null, date = null;

for ( var i=0, l=dates.length; i<l; ++i ) {
    date = new Date(dates[i].replace(/-/g, "/"));

    //
    if ( !lastDate ) {
        startDates.push(lastDate = date);
    }
    // If the diffrence between the days is greater than the number
    // of milliseconds in a day, then it is not consecutive
    else if ( date - lastDate > 86400000 ) {
        lastDate = null;
        endDates.push(date);
    }
}
// Close the last range
endDates.push(date);

// Result is two symetical arrays
console.log(startDates, endDates);