如何进行日期/时间比较


98

在Go中进行日期比较是否有任何选择?我必须根据日期和时间-独立地对数据进行排序。因此,我可以允许一个对象在某个日期范围内发生,只要它也在某个时间范围内也发生。在此模型中,我不能简单地选择最旧的日期,最年轻的时间/最新的日期,最新的时间和Unix()秒进行比较。我真的很感谢任何建议。

最终,我编写了一个时间解析字符串比较模块,以检查时间是否在范围内。但是,这并不顺利。我有一些大问题。我将其发布在这里只是为了好玩,但我希望有一种更好的时间比较方法。

package main

import (
    "strconv"
    "strings"
)

func tryIndex(arr []string, index int, def string) string {
    if index <= len(arr)-1 {
        return arr[index]
    }
    return def
}

/*
 * Takes two strings of format "hh:mm:ss" and compares them.
 * Takes a function to compare individual sections (split by ":").
 * Note: strings can actually be formatted like "h", "hh", "hh:m",
 * "hh:mm", etc. Any missing parts will be added lazily.
 */
func timeCompare(a, b string, compare func(int, int) (bool, bool)) bool {
    aArr := strings.Split(a, ":")
    bArr := strings.Split(b, ":")
    // Catches margins.
    if (b == a) {
        return true
    }
    for i := range aArr {
        aI, _ := strconv.Atoi(tryIndex(aArr, i, "00"))
        bI, _ := strconv.Atoi(tryIndex(bArr, i, "00"))
        res, flag := compare(aI, bI)
        if res {
            return true
        } else if flag { // Needed to catch case where a > b and a is the lower limit
            return false
        }
    }
    return false
}

func timeGreaterEqual(a, b int) (bool, bool) {return a > b, a < b}
func timeLesserEqual(a, b int) (bool, bool) {return a < b, a > b}

/*
 * Returns true for two strings formmated "hh:mm:ss".
 * Note: strings can actually be formatted like "h", "hh", "hh:m",
 * "hh:mm", etc. Any missing parts will be added lazily.
 */
func withinTime(timeRange, time string) bool {
    rArr := strings.Split(timeRange, "-")
    if timeCompare(rArr[0], rArr[1], timeLesserEqual) {
        afterStart := timeCompare(rArr[0], time, timeLesserEqual)
        beforeEnd := timeCompare(rArr[1], time, timeGreaterEqual)
        return afterStart && beforeEnd
    }
    // Catch things like `timeRange := "22:00:00-04:59:59"` which will happen
    // with UTC conversions from local time.
    // THIS IS THE BROKEN PART I BELIEVE
    afterStart := timeCompare(rArr[0], time, timeLesserEqual)
    beforeEnd := timeCompare(rArr[1], time, timeGreaterEqual)
    return afterStart || beforeEnd
}

因此,TLDR我编写了一个innerTimeRange(range,time)函数,但无法完全正常工作。(实际上,多数情况只是第二种情况,时间跨度超过了几天。原始部分起作用了,我只是意识到当从本地转换为UTC时需要考虑这一点。)

如果有更好的方法(最好是内置方法),我很想听听!

注意:作为示例,我使用以下功能在Javascript中解决了此问题:

function withinTime(start, end, time) {
    var s = Date.parse("01/01/2011 "+start);
    var e = Date.parse("01/0"+(end=="24:00:00"?"2":"1")+"/2011 "+(end=="24:00:00"?"00:00:00":end));
    var t = Date.parse("01/01/2011 "+time);
    return s <= t && e >= t;
}

但是我真的很想在服务器端做这个过滤器。

Answers:


110

使用时间包在Go中处理时间信息。

可以使用Before,After和Equal方法比较时刻。Sub方法减去两个瞬间,产生持续时间。Add方法添加一个时间和一个持续时间,生成一个时间。

播放示例:

package main

import (
    "fmt"
    "time"
)

func inTimeSpan(start, end, check time.Time) bool {
    return check.After(start) && check.Before(end)
}

func main() {
    start, _ := time.Parse(time.RFC822, "01 Jan 15 10:00 UTC")
    end, _ := time.Parse(time.RFC822, "01 Jan 16 10:00 UTC")

    in, _ := time.Parse(time.RFC822, "01 Jan 15 20:00 UTC")
    out, _ := time.Parse(time.RFC822, "01 Jan 17 10:00 UTC")

    if inTimeSpan(start, end, in) {
        fmt.Println(in, "is between", start, "and", end, ".")
    }

    if !inTimeSpan(start, end, out) {
        fmt.Println(out, "is not between", start, "and", end, ".")
    }
}

也许我看不懂,但是我没有看到任何关于时间比较的信息。如果有,您能指出我的确切文章吗?
eatonphil 2014年

12
尝试godoc.org/time#Time.Equalgodoc.org/time#Time。进行简单比较之后,或godoc.org/time#Time.Sub找出两次之间的时差。
andybalholm 2014年

1
“报告时刻t是否在u之后。” 令人毛骨悚然
Damien Roche


15

如果间隔的结束日期是无小时的日期,例如“从2017-01-01到2017-01-16整天”,则最好将间隔的时间调整为23小时59分59秒,例如:

end = end.Add(time.Duration(23*time.Hour) + time.Duration(59*time.Minute) + time.Duration(59*time.Second)) 

if now.After(start) && now.Before(end) {
    ...
}

1
正是我需要比较存储的时间戳和当前时间所需要的。
PGP_Protector

1

最近的协议更喜欢每个golang时间包文档使用RFC3339 。

通常,对于坚持使用该格式的服务器,应使用RFC1123Z代替RFC1123,对于新协议,应首选RFC3339。RFC822,RFC822Z,RFC1123和RFC1123Z对于格式化非常有用。当与time.Parse一起使用时,它们不接受RFC允许的所有时间格式。

cutOffTime, _ := time.Parse(time.RFC3339, "2017-08-30T13:35:00Z")
// POSTDATE is a date time field in DB (datastore)
query := datastore.NewQuery("db").Filter("POSTDATE >=", cutOffTime).

-1

以下解决了我将字符串转换为日期的问题

包主

import (
    "fmt"
    "time"
)

func main() {
    value  := "Thu, 05/19/11, 10:47PM"
    // Writing down the way the standard time would look like formatted our way
    layout := "Mon, 01/02/06, 03:04PM"
    t, _ := time.Parse(layout, value)
    fmt.Println(t)
}

// => "Thu May 19 22:47:00 +0000 2011"

感谢保罗·亚当·史密斯


1
很好,但是与问题无关,是吗?
matthias krull 2015年

您说得对@matthiaskrull。它没有回答比较日期的问题,但是部分有助于轻松地解析日期。
suryakrupa

所以做这个和其他几个。我只是说,在注释中链接某些内容比使用随机有用的位进行回答更合适。
matthias krull
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.