This afternoon, a co-worker asked me: "how do i get the last day of the month in perl ?"
After clarifying with him that he wanted the "name of the day of the last day of any given month/year", and then having a quick fossick about on CPAN, I threw the following example together using Calendar::Functions:
#!/usr/bin/perl -w
use strict;
use Calendar::Functions qw(month_days dotw dotw3);
while (1) {
print "Enter year (yyyy) and month (mm), separated by a space:";
chomp(my $input = <STDIN>);
last if !$input;
my ($year, $month) = split / /, $input;
my $dayname = dotw(dotw3(month_days($month, $year), $month, $year)
+);
print "The last day of $month/$year will be a $dayname\n";
}
I'm curious to know how others would approach this little task?
(There are a few related Q&A's, - this one in particular - but none are quite the same)
Update: many thanks for all the replies. As always - TIMTOWTDI. However, on this occassion - for pure simplicity - the pony has to go to herkum for his DateTime solution :)
Thanks,
Darren :)
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.