在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的Parse()函数用于解析格式化的字符串,然后查找它形成的时间值。此外,此函数在时间包下定义。在这里,您需要导入“time”软件包才能使用这些函数。
用法:
func Parse(layout, value string) (Time, error)
在这里,layout通过以哪种方式显示参考时间(即定义为Mon Jan 2 15:04:05 -0700 MST 2006)来指定格式,如果它是该值的话。但是,先前定义的布局(例如UnixDate,ANSIC,RFC3339等)解释了标准时间以及参考时间的合适表示形式。并且value参数保存字符串。其中,从值中删除的元素假定为零,如果不可能为零,则假定为一。
返回值:它返回它表示的时间值。并且如果不存在时区指示符,则它会返回UTC时间。
范例1:
// Golang program to illustrate the usage of
// time.Parse() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Declaring layout constant
const layout = "Jan 2, 2006 at 3:04pm (MST)"
// Calling Parse() method with its parameters
tm, _:= time.Parse(layout, "Feb 4, 2014 at 6:05pm (PST)")
// Returns output
fmt.Println(tm)
}
输出:
2014-02-04 18:05:00 +0000 PST
在此,返回的输出在PST中,如上面所定义,并且此处使用的布局常数和值是其long-form。
范例2:
// Golang program to illustrate the usage of
// time.Parse() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Declaring layout constant
const layout = "2006-Jan-02"
// Calling Parse() method with its parameters
tm, _:= time.Parse(layout, "2014-Feb-04")
// Returns output
fmt.Println(tm)
}
输出:
2014-02-04 00:00:00 +0000 UTC
在这里,返回的输出以UTC表示,因为没有时区指示符,并且此处使用的布局常量和值是其简短形式。
相关用法
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
- Golang time.Round()用法及代码示例
- Golang reflect.AppendSlice()用法及代码示例
- Golang reflect.ChanOf()用法及代码示例
- Golang flag.Bool()用法及代码示例
- Golang time.Sleep()用法及代码示例
- Golang time.Time.Year()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.Indirect()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.CanInterface()用法及代码示例
- Golang reflect.CanSet()用法及代码示例
- Golang reflect.Cap()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 time.Parse() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。