time.Time.String() Function in Golang With Examples Last Updated : 19 Apr, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report In Go language, time packages supplies functionality for determining as well as viewing time. The Time.String() function in Go language is used to yield the time which is formatted with the help of the format string. Moreover, this function is defined under the time package. Here, you need to import the "time" package in order to use these functions. Syntax: func (t Time) String() string Here, "t" is the stated time. Note: It the stated time has a clock reading that is monotonic then the string that is returned as an output includes a final field i.e, "m=±value". Where value is the unvaried clock reading that is arranged as a decimal number of seconds. Return Value: It returns the time which is formatted with the help of format string. Example 1: C // Golang program to illustrate the usage of // Time.String() function // Including main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Defining the time for String method Time := time.Date(2020, 11, 14, 10, 45, 16, 0, time.UTC) // Calling String method t := Time.String() // Prints output fmt.Printf("The time without nanoseconds is: %v\n", t) } Output: The time without nanoseconds is: 2020-11-14 10:45:16 +0000 UTC Example 2: C // Golang program to illustrate the usage of // Time.String() function // Including main package package main // Importing fmt and time import ( "fmt" "time" ) // Calling main func main() { // Defining the time for String method Time := time.Date(2020, 11, 14, 36, 45, 16, 36, time.UTC) // Calling String method t := Time.String() // Prints output fmt.Printf("The time with nanoseconds is: %v\n", t) } Output: The time with nanoseconds is: 2020-11-15 12:45:16.000000036 +0000 UTC Here, the hour stated in the above code is out of usual range but it is normalized, while conversion and nanoseconds are also included in the time, stated above. Comment More infoAdvertise with us Next Article time.Time.In() Function in Golang with Examples N nidhi1352singh Follow Improve Article Tags : Go Language GoLang-time Similar Reads time.Time.In() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The In() function in Go language is used to find a copy of the stated "t" that represents the identical time instant, but along with the copy's location data that is set to "loc" for display uses. And if "l 2 min read time.String() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The String() function in Go language is used to find a string that represents the duration formats as "24h6m0.7s". Here, the foremost zero units are deleted. And the stated duration with less than one-secon 2 min read time.Time.Sub() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Sub() function in Go language is used to yield the duration obtained by performing the operation t-u. And if the output here surpasses the maximum or the minimum value that can be stored in a Durat 2 min read time.Time.Round() Function in Golang with Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Round() function in Go language is used to find the output of rounding the stated time "t" to the closest multiple of the given duration "d" from the zero time. And the behavior of rounding for mid 2 min read time.Time.Minute() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Minute() function in Go language is used to find the minute offset within the stated hour that is provided by "t" and the range is [0, 59]. Moreover, this function is defined under the time package 2 min read time.Time.IsZero() Function in Golang With Examples In Go language, time packages supplies functionality for determining as well as viewing time. The Time.IsZero() function in Go language is used to check if the stated time "t" implies zero time instant or not i.e, January 1, year 1, 00:00:00 UTC. Moreover, this function is defined under the time pac 2 min read Like