Felice Vittoria wrote:
> Is there a Perl module (or function) that will calculate the 
> date/time difference between a start time and end time?

The standard time representation in Perl is seconds since the epoch -- so,
if you store the value of time() at one point and then again, later, you can
just subtract one value from the other and get the elapsed time in seconds.

If you want nicer formatting, or if the input times are not "seconds since
the epoch" but formatted strings or the like, you're probably looking at
Date::Manip and/or Date::Calc.

Cheers,
Philip

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to