Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: Trouble with Dates

by rruser (Acolyte)
on Jul 10, 2013 at 18:48 UTC ( [id://1043535]=note: print w/replies, xml ) Need Help??


in reply to Re: Trouble with Dates
in thread Trouble with Dates

This worked great!! thx poj

if i wanted to find previous month's last day how would i go about that..thx

Replies are listed 'Best First'.
Re^3: Trouble with Dates
by poj (Abbot) on Jul 10, 2013 at 19:15 UTC
    To get last day of previous month add -1 days to the 1st of the current month.
    #perl use strict; use Date::Calc qw( Delta_Days Today Days_in_Month Add_Delta_Days); # add Add_Delta_Days my ($y,$m,$d) = Today(); # Add_Delta_Days #($year,$month,$day) = Add_Delta_Days($year,$month,$day,$Dd); my $prev_mth_end = sprintf "%04d,%02d,%02d", Add_Delta_Days($y,$m,1,-1); print $prev_mth_end;
    All the function are documented in Date::Calc.
    poj

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-26 08:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found