I have a number of seconds. Let's say 270921. How can I display that number saying it is xx days, yy hours, zz minutes, ww seconds?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It can be done pretty concisely using
You could probably DRY it further by getting creative with |
|||
|
I was hoping there would be an easier way than using divmod, but this is the most DRY and reusable way I found to do it:
The method is easily adjusted by changing the format string and the first inline array (ie the [24,60,60]). |
|||
|
|
|
Rails has an helper which converts distance of time in words. You can look its implementation: distance_of_time_in_words |
|||||||||||
|
|
If you're using Rails, there is an easy way if you don't need the precision:
|
|||
|
|
|
I just start writing ruby. i guess this is only for 1.9.3
|
||||
|
|
