If it ever gets that bad - I'll send it your way...you can judge for yourself.
-----Original Message----- From: Anthony R. Nemmer [mailto:[EMAIL PROTECTED] Sent: Monday, February 06, 2006 8:47 PM To: $Bill Luebkert Cc: [EMAIL PROTECTED]; [email protected] Subject: Re: Breaking Up A Date. Depends on how good looking the date is too. $Bill Luebkert wrote: > Jonathan Dudson wrote: > > >>I am pretty much a newbie when it comes to perl. >> >>I am trying to break up either localtime or time so they I end up with >>three separate variables $date (06) $month(02) $year(2006) that I can >>use in an archiving script. >> >>Someone suggested using date calc but that appears to work with values >>passed to it that you may already have. >> >>Any suggestions would be great. > > > my ($date, $month, $year) = (localtime)[3,4,5]; > $month++, $year += 1900; > print "$date, $month, $year\n"; > > The month is in 0-11 form and you may have to add one for printing > and the year is 1900 based. > _______________________________________________ > ActivePerl mailing list > [email protected] > To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs > > -- I always have coffee when I watch radar! ----------------------------------------------- Scanned by 186k-NetCleanse, spam and virus protection _______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
