What is the best way...

Perhaps something using Date::Calc. The idea would be to take a date in the year, find the next monday, and if the year is the same, print it out. Then, keep adding 7 days until the year changes.

#! /usr/bin/perl use strict; use warnings; use Date::Calc 'Add_Delta_Days'; my ($day, $month, $year, $dow) = (localtime)[3, 4, 5, 6]; $year += 1900; $month += 1; my $this_year = $year; ($year, $month, $day) = Add_Delta_Days($year, $month, $day, (8 - $dow) + % 7); while ($this_year == $year) { printf "%04d-%02d-%02d\n", $year, $month, $day; ($year, $month, $day) = Add_Delta_Days($year, $month, $day, 7); }

update: it occurs to me that it may not be obvious how this calculates Mondays, since it uses a magic number. It would be a little clearer had I written:

my %day = qw( Sun 0 Mon 1 Tue 2 Wed 3 Thu 4 Fri 5 Sat 6 ); ($year, $month, $day) = Add_Delta_Days($year, $month, $day, (7 + $day{ +Mon} - $dow) % 7);

• another intruder with the mooring in the heart of the Perl


In reply to Re: What is the best way to get a list of all Mondays until the end of the year? by grinder
in thread What is the best way to get a list of all Mondays until the end of the year? by wenD

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.