Re: Converting Date to Epoch Seconds
> "Dale" == Dale Pellerin <[EMAIL PROTECTED]> writes: Dale> How do you convert a date that is already in the format MMDD into Epoch Dale> seconds? Dale> $date = 20011130 Presuming you want midnight localtime for that date: my $date = "20011130"; my ($year, $month, $day) = $date =~ /(\d
Converting Date to Epoch Seconds
How do you convert a date that is already in the format MMDD into Epoch seconds? $date = 20011130 Thank you. Dale