Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
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??

Help for this page

Select Code to Download


  1. or download this
    use Date::Simple qw/today/;
    use 5.010;
    ...
    my $month = $d->month;
    $d-- while $month == $d->month;
    say $d;
    
  2. or download this
    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 goofing around in the Monastery: (4)
As of 2024-04-19 00:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found