>>>>> "Anil" == Anil Kumar <[EMAIL PROTECTED]> writes:

Anil> I am new to perl and working for a small project...

Anil> I need some help from you..

Anil> How to get all the first days of a week in a month.

Using the bloated "Date::Manip":

    use Date::Manip;
    my @dates = ParseRecur("every sunday in aug 2005");
    print UnixDate($_, "%b %e, %Y\n") for @dates;

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to