S, Rajini (STSD) wrote:
>  
> Hi Rob, 
> 
> When I set the date to 30-Jan-2009 and run the code given below, 
> 
> Eg : 
> 
> When dates are set as : 
> 
> my $days1 = epoch_days('30-Jan-09');
> my $days2 = epoch_days('29-Feb-2009');
> 
> I get the below error. 
> 
> hpcll402:/home/ssssraji/perl>./date2.pl
> Day '30' out of range 1..28 at ./date2.pl line 35

My apologies - there is a problem with my code. The initialisation should be

  my %month_num = do {
    my $n = 0;
    map(($_, $n++), qw/jan feb mar apr may jun jul aug sep oct nov dec/);
  };

(The only change being that $n starts at zero instead of one.)

HTH,

Rob

-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to