Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
7  
have you had a go at this already? what did you try? – Flexo Jun 7 '11 at 7:55

7 Answers

up vote 16 down vote accepted

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:

use DateTime;

my $date = DateTime->new(year => 2011, month => 6, day => 11);
my $desired_dow = 1;            # Monday
$date->subtract(days => ($date->day_of_week - $desired_dow) % 7);
print "$date\n";

(Actually, for the special case of Monday, the % 7 isn't necessary, because $date->day_of_week - 1 will always be 0–6, and that mod 7 is a no-op. But with the % 7, it works for any desired day-of-week, not just Monday.)

If you did want the previous Monday, you can change the subtraction:

$date->subtract(days => ($date->day_of_week - $desired_dow) % 7 || 7);

If you need to parse a date entered on the command line, you might want to look at DateTime::Format::Natural.

share|improve this answer
1  
There are a lot of ways to do this and a lot of date/time modules on CPAN, but DateTime is by far the best module for doing anything with dates and times. – Eric Johnson Jun 7 '11 at 9:42

You could also use Time::ParseDate, which understand "last Monday".

A one-liner to maintain Perl's reputation:

perl -MTime::ParseDate -M'POSIX qw(strftime)' -l -e'foreach (@ARGV) { my $now= parsedate( $_); my $e= parsedate( "last Monday", NOW => $now) ; print "$_ : ", strftime "%F", localtime( $e)}' 2011-06-11 2011-06-12 2011-06-13 2011-06-14

And a sane script:

#!/usr/bin/perl

use strict;
use warnings;

use Time::ParseDate;    # to parse dates
use POSIX qw(strftime); # to format dates

foreach my $date (@ARGV) 
  { my $date_epoch= parsedate( $date) || die"'cannot parse date '$date'\n";
    my $monday= parsedate( "last Monday", NOW => $date_epoch);                  # last Monday before NOW
    print "Monday before $date: ", strftime( "%F", localtime( $monday)), "\n";  # %F is YYYY-MM-DD
  }

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).

share|improve this answer
1  
While DateTime is a canonical way to work with dates and times in Perl, Time::ParseDate has always been my favorite for this sort of things. – Grrrr Jun 7 '11 at 8:49
1  
I actually rarely have to work with dates, which maybe why I find parsedate( "last Monday", NOW => $date_epoch); cute and, more important, easy to remember. – mirod Jun 7 '11 at 9:08

Pretty simple stuff using the standard Perl library.

#!/usr/bin/perl

use strict;
use warnings;
use 5.010;

use Time::Local;
use POSIX 'strftime';

my $date = shift || die "No date given\n";

my @date = split /-/, $date;
$date[0] -= 1900;
$date[1]--;

die "Invalid date: $date\n" unless @date == 3;

my $now = timelocal(0, 0, 12, reverse @date);

while (strftime('%u', localtime $now) != 1) {
  $now -= 24 * 60 * 60;
}

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.

share|improve this answer

In the spirit of Perl, There Is More Than One Way To Do It.

use Modern::Perl;
use Date::Calc qw/Day_of_Week/;
my $date = '2011/6/11';
my @fields = split /\//, $date;
my @new_date = Add_Delta_Days( @fields , 1 - Day_of_Week( @fields ) );
say join "/", @new_date;
share|improve this answer

You could use Date::Manip, which has a Date_GetPrev function and understands "Monday"

$ perl -MDate::Manip -le 'print UnixDate(Date_GetPrev(shift, "Monday", 0), "%Y-%m-%d")' 2011-06-11
2011-06-06
share|improve this answer

At the end of this, $tstamp would have the timestamp you want:

use strict;
use warnings;
use POSIX qw<mktime>;

my $time = '2011-06-11';

my ( $year, $month, $day ) = split /-0?/, $time;
my $tstamp = mktime( 0, 0, 0, $day, $month - 1, $year - 1900 );
my $dow  = ( localtime $tstamp )[6];
$tstamp -= (( $dow > 1 ? 0 : 7 ) + $dow - 1 ) * 24 * 60 * 60;

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.

share|improve this answer
You're off by one on you dow test, 2011-06-07 (Tuesday) will return the timestamp for 2011-05-30. – Ven'Tatsu Jun 7 '11 at 15:31
@Ven'Tatsu Ah, I outsmarted myself. I tested, posted, and then read the comparative wrong and hastily changed it to a 2. – Axeman Jun 7 '11 at 15:36

Zeller's congruence will give you the day of the week. From there it should be pretty easy.

share|improve this answer
1  
That's a newspost of a newspost. Alternative link to original posting, better readable: <Message-ID: 1990Oct2.172114.6421@amd.com> – daxim Jun 7 '11 at 8:50
2  
@daxim, not to mention totally unnecessary in Perl 5. ( localtime )[6] is day-of-week. – Axeman Jun 7 '11 at 12:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.