in reply to "natural language" time formatting?

Time::Duration looks like it fits the bill nicely.

#!/usr/bin/perl -w use strict; use Time::Duration; my $seconds = 163546; print duration_exact($seconds),"\n"; __DATA__ 1 day, 21 hours, 25 minutes, and 46 seconds

Replies are listed 'Best First'.
Re: Re: "natural language" time formatting?
by glwtta (Hermit) on Jul 16, 2003 at 19:59 UTC
    Thanks, worked beautifully - just what I needed and nothing more.