Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: How to find the last date of the previous month?

by moritz (Cardinal)
on Oct 30, 2012 at 05:27 UTC ( [id://1001455]=note: print w/replies, xml ) Need Help??


in reply to How to find the last date of the previous month?

use Date::Simple qw/today/; use 5.010; my $d = today; my $month = $d->month; $d-- while $month == $d->month; say $d;

Or

use Date::Simple qw/today ymd/; use 5.010; my $d = today; $d = ymd($d->year, $d->month, 1) - 1; say $d;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1001455]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-03-28 23:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found