"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Parse Time Strings in Specific Time Zones with `time.ParseInLocation()`?

How to Parse Time Strings in Specific Time Zones with `time.ParseInLocation()`?

Published on 2024-11-22
Browse:679

How to Parse Time Strings in Specific Time Zones with `time.ParseInLocation()`?

Custom Time Zone Parsing with time.ParseInLocation

When parsing time using the time.ParseTime() function, the resulting time struct will be in UTC by default, which may not always be the desired behavior. To address this, you can leverage the time.ParseInLocation() function, which allows you to specify a specific time zone during parsing.

For instance, if you want to obtain a time struct in a time zone other than UTC, you can utilize time.Local as the Location argument. This ensures that the resulting time object will reflect the specified time stamp in your local time zone.

Here's an example to illustrate:

package main

import (
    "fmt"
    "time"
)

func main() {
    // Parse time with a specific time zone.
    // 2012-07-09 05:02:00  0000 CEST
    const formWithZone = "Jan 2, 2006 at 3:04pm (MST)"
    t, _ := time.ParseInLocation(formWithZone, "Jul 9, 2012 at 5:02am (CEST)", time.Local)
    fmt.Println(t)

    // Parse time without a specific time zone, will use local time zone.
    // 2012-07-09 05:02:00 -0700 PDT
    const formWithoutZone = "Jan 2, 2006 at 3:04pm"
    t, _ = time.ParseInLocation(formWithoutZone, "Jul 9, 2012 at 5:02am", time.Local)
    fmt.Println(t)
}

By using time.ParseInLocation(), you can easily parse time strings and obtain time structs in any desired time zone, allowing for more flexibility and control over time representation.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3