You can use "inc_month" function in "DateTime::Precise" module.
use DateTime::Precise; use strict; my $t1 = DateTime::Precise->new; my %months = ( 1 => q{January}, 2 => q{February}, 3 => q{March}, 4 => q{April}, 5 => q{May}, 6 => q{June}, 7 => q{July}, 8 => q{Auguest}, 9 => q{Septemper}, 10 => q{October}, 11 => q{November}, 12 => q{December}, ); my $thisMonth = $months{$t1->month}; my $prevMonth = $months{$t1->inc_month(-1)->month}; my $t1 = DateTime::Precise->new; my $monthB4rLast = $months{$t1->inc_month(-2)->month}; my $t1 = DateTime::Precise->new; my $monthB4rLast1 = $months{$t1->inc_month(-3)->month}; print "This Month is $thisMonth\n"; print "Previous Month is $prevMonth\n"; print "Month before last is $monthB4rLast\n"; print "Month before 2 months is $monthB4rLast1\n"; Output: ------- ThisMonth is March Next Month is February Month before last is January Month before 2 months is December

In reply to Re: Month Dates by siva kumar
in thread Month Dates by Anonymous Monk

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.