in reply to Convert Week Of Year to Date
Second, there's only 53 Sundays in 2005, so it should be easy to calculate which ones go where.
my @sundays = ([]); my @date = (2005, 1, 1); $date[2]++ while Day_Of_Week(@date) != 7; DATE: { push @sundays, \@date; @date = Add_Delta_Days( @date, 7 ); last if $date[0] == 2006; redo DATE; } # Now, $sundays[1] == ( 2005, 1, 2 ) # $sundays[2] == (2005, 1, 9 ) # etc.
Alternately, you could just do:
my @sunday_date = Monday_of_Week(Week_of_Year( @starting_date )); $sunday_date[2]--;
Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.
|
---|