http://www.perlmonks.org?node_id=827355


in reply to use of date n time functions

Or you could parse out the dates with a regex, then use the Date::Calc bazooka to compare theses dates and find the most recent one.

The advantage of this being that you don't have to take into acount tricky dates pitfalls like leap years and so forth, as Date::Calc does that for you.

Replies are listed 'Best First'.
Re^2: use of date n time functions
by blackgoat (Acolyte) on Mar 09, 2010 at 05:16 UTC
    Could you pls give me a sample showing how to use Date::Calc to compare dates??

      It's all in the Date::Calc help page : look at the recipes

      For instance :

      use Date::Calc qw( Delta_Days ); if (Delta_Days($year1,$month1,$day1, $year2,$month2,$day2) > 0)
      There's also examples about : How do I compare two dates with times? , which might be just what you need.