Excellent suggestion to use Date::Calc. Here's one way to implement it with your data:

use Modern::Perl; use Date::Calc qw/Delta_YMDHMS/; # From the documentation: # Delta_YMDHMS # ($D_y,$D_m,$D_d, $Dh,$Dm,$Ds) = # Delta_YMDHMS($year1,$month1,$day1, $hour1,$min1,$sec1, # $year2,$month2,$day2, $hour2,$min2,$sec2); # my $start = '2012-08-08 17:14:22'; my $end = '2012-08-10 17:14:22'; my @start = $start =~ /(\d+)/g; my @end = $end =~ /(\d+)/g; my ( $D_y, $D_m, $D_d, $Dh, $Dm, $Ds ) = Delta_YMDHMS( @start, @end ); say "The difference between $start and $end is:\nYears: $D_y, Months: +$D_m, Days: $D_d, Hours: $Dh, Minutes: $Dm, Seconds: $Ds";

Output:

The difference between 2012-08-08 17:14:22 and 2012-08-10 17:14:22 is: Years: 0, Months: 0, Days: 2, Hours: 0, Minutes: 0, Seconds: 0

Hope this helps!


In reply to Re^2: Time difference by Kenosis
in thread Re: Time difference by raja@1988

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.