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
+17.1k Golang : Find file size(disk usage) with filepath.Walk
+10.3k Swift : Convert (cast) String to Integer
+5.5k Golang : Detect words using using consecutive letters in a given string
+27k Golang : Find files by name - cross platform example
+11.2k Golang : How to use if, eq and print properly in html template
+9.1k Golang : How to control fmt or log print format?
+5.4k Golang : If else example and common mistake
+19.7k Golang : Measure http.Get() execution time
+7.4k SSL : How to check if current certificate is sha1 or sha2 from command line
+7k Nginx : How to block user agent ?
+13.5k Golang : Set image canvas or background to transparent