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
+11.2k Golang : How to determine a prime number?
+7.2k Golang : Transform lisp or spinal case to Pascal case example
+3.8k Golang : Switch Redis database redis.NewClient
+6.9k Get Facebook friends working in same company
+5.5k Golang : Display advertisement images or strings on random order
+15.7k Chrome : ERR_INSECURE_RESPONSE and allow Chrome browser to load insecure content
+8.7k Golang : Set or add headers for many or different handlers
+9.8k PHP : Get coordinates latitude/longitude from string
+11k Golang : How to transmit update file to client by HTTP request example
+6.9k Mac/Linux/Windows : Get CPU information from command line
+5.1k Golang : Constant and variable names in native language
+5.7k Swift : Get substring with rangeOfString() function example