Golang : Convert seconds to minutes and remainder seconds
Problem:
You have an input seconds in integer that you want to convert into minutes and remainder seconds. How to do that?
Solution:
The secondsToMinutes()
function below will first get the minutes from the given input seconds and then calculate the remainder seconds.
Here you go!
package main
import (
"fmt"
)
func secondsToMinutes(inSeconds int) string {
minutes := inSeconds / 60
seconds := inSeconds % 60
str := fmt.Sprintf("d:d", minutes, seconds)
return str
}
func main() {
fmt.Println("3600 seconds in minutes : ", secondsToMinutes(3600))
fmt.Println("9999 seconds in minutes : ", secondsToMinutes(9999))
fmt.Println("660 seconds in minutes : ", secondsToMinutes(660))
fmt.Println("1234567890 seconds in minutes : ", secondsToMinutes(1234567890))
}
Output:
3600 seconds in minutes : 60:00
9999 seconds in minutes : 166:39
660 seconds in minutes : 11:00
1234567890 seconds in minutes : 20576131:30
See also : Golang : Convert date or time stamp from string to time.Time type
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.2k Golang : Simple histogram example
+11.7k Swift : Convert (cast) Float to String
+7k Mac/Linux/Windows : Get CPU information from command line
+20.6k Golang : Pipe output from one os.Exec(shell command) to another command
+5.7k Fix fatal error: evacuation not done in time problem
+16.5k Golang : Find out mime type from bytes in buffer
+8.2k Golang : Variadic function arguments sanity check example
+10.1k Golang : Get escape characters \u form from unicode characters
+34.8k Golang : How to stream file to client(browser) or write to http.ResponseWriter?
+16.9k Golang : Get own process identifier
+7.3k Golang : Use modern ciphers only in secure connection
+14.7k Golang : Execute function at intervals or after some delay