Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: How do I Compare Dates

by Anonymous Monk
on Jun 17, 2004 at 18:41 UTC ( [id://367721]=note: print w/replies, xml ) Need Help??


in reply to How do I Compare Dates

Hello. For what it's worth, I wrote the following to be able to determine whether date1 is within 3 days of date2 etc. I didn't know about Date::Manip.
sub abs_day { # this subroutine accepts a month, day, and two-digit year in # mm/dd/yy numerical form, e.g., 3/23/04. # it then calculates the "absolute day", # i.e., the number of days # since day 0, which is the turn of the 21st century. # so, 1/10/2000 is absolute day 10; # 1/10/2001 is absolute day 376 # (because year 2000 was a leap year). # the routine deals with leap years by # multiplying years by 365.25, and then rounding down. my $month = shift(@_); my $day = shift(@_); my $year = shift(@_); if ($debug) { print "i'm in abs_day and month is $month,", " day is $day, year is $year\n"; } my $abs_day; undef($abs_day); # so each year has 365.25 days # years are of the form 00, 01, 02, etc. $abs_day = $year * 365.25; # add .75 to account for fact that year 00 is a leap year $abs_day = $abs_day + .75; if ($debug) { print "abs_day is $abs_day after adding .75 to yr*365\n"; } if ($month == 1) #jan { $abs_day = $abs_day + 0; } if ($month == 2) #feb { $abs_day = $abs_day + 31; } # starting in march, we add .25 to number of days # to account for leap year if ($month == 3) #mar { $abs_day = $abs_day + 59.25; } if ($month == 4) #apr { $abs_day = $abs_day + 90.25; } if ($month == 5) #may { $abs_day = $abs_day + 120.25; } if ($month == 6) #jun { $abs_day = $abs_day + 151.25; } if ($month == 7) #jul { $abs_day = $abs_day + 181.25; } if ($month == 8) #aug { $abs_day = $abs_day + 212.25; } if ($month == 9) #sep { } if ($month == 11) #nov { $abs_day = $abs_day + 304.25; } if ($month == 12) #dec { $abs_day = $abs_day + 334.25; } $abs_day = $abs_day + $day; if ($debug) { print "now that we have added year, month, and", " day, abs_day is $abs_day\n"; } $abs_day = sprintf "%d", $abs_day; if ($debug) { print "now that we have converted from float to integer,", " abs_day is $abs_day\n"; } return $abs_day; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://367721]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-12-09 23:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which IDE have you been most impressed by?













    Results (55 votes). Check out past polls.