I am looking for a Perl script which can give me the last Monday for any specified date.
e.g. For date 2011-06-11, the script should return 2011-06-06
|
|
I'm assuming that if the given date is a Monday, you want the same date (and not the previous Monday). Here's one way to do it with DateTime:
(Actually, for the special case of Monday, the If you did want the previous Monday, you can change the subtraction:
If you need to parse a date entered on the command line, you might want to look at DateTime::Format::Natural. |
|||||
|
|
You could also use Time::ParseDate, which understand "last Monday". A one-liner to maintain Perl's reputation:
And a sane script:
A couple of notes: if the date is a Monday, then you get the previous Monday, which may or may not be what you want, to change that just set NOW to the next day (add 60*60*24, a day, to $date_epoch). Then Time::ParseDate is pretty liberal, it will happily parse 2011-23-38 for example (as 2012-12-09). |
|||||||||
|
|
Pretty simple stuff using the standard Perl library.
I'll leave it as an exercise for the reader to look up the various modules and functions used. It's probably even simpler if you use DateTime. |
|||
|
|
|
In the spirit of Perl, There Is More Than One Way To Do It.
|
||||
|
|
|
You could use Date::Manip, which has a
|
||||
|
|
|
At the end of this,
This assumes that by "last Monday" you mean the last occurring Monday prior to the given day." So if the day of the week is Monday (1), then it subtracts and additional 7. |
||||
|
Zeller's congruence will give you the day of the week. From there it should be pretty easy. |
|||||||||
|