Re: Looping Dates.

2008-01-25 Thread Anagram
Sara - You should look at perldoc.perl.org for the date-time related functions. You don't really need any special modules, though they can sometimes be helpful. Here is a key idea: dates in perl (and many other computer languages & systems) are stored as an integer number that represents the nu

Re: Looping Dates.

2008-01-19 Thread Gunnar Hjalmarsson
[EMAIL PROTECTED] wrote: I am stuck here, I want to get list of dates in a certain range. Like: Start Date: 2007-01-03 to End Date: 2007-05-30 I am pointless here as what should I do in order to get all dates between start and end? Is there any for, foreach loop or other method? that will gen

Re: Looping Dates.

2008-01-18 Thread Owen
> I am stuck here, I want to get list of dates in a certain range. Like: > Start Date: 2007-01-03 to End Date: 2007-05-30 > > I am pointless here as what should I do in order to get all dates between > start and end? Is there any for, foreach loop or other method? that will > generate a list of dat

RE: Looping Dates.

2008-01-18 Thread Duck McDonald
Sara, I'm just a novice, but there is come code and info which may help (using the perl module: date::range) at: http://search.cpan.org/~tmtm/Date-Range-1.40/lib/Date/Range.pm HTH, "Duck" McDonald -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, January

Re: Looping Dates.

2008-01-18 Thread Aruna Goke
[EMAIL PROTECTED] wrote: I am stuck here, I want to get list of dates in a certain range. Like: Start Date: 2007-01-03 to End Date: 2007-05-30 I am pointless here as what should I do in order to get all dates between start and end? Is there any for, foreach loop or other method? that will gene