Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Perl Beginners Cgi > Re: Looping Dat...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 4 of 6 Topic 1442 of 1496
Post > Topic >>

Re: Looping Dates.

by rcook@[EMAIL PROTECTED] (Owen) Jan 19, 2008 at 06:58 PM

> 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 dates:
>
> 2007-01-03
> 2007-01-04
> 2007-01-05
> 2007-01-06
> 2007-01-07
> .............. and so on to
> 2007-05-30
>
> Any ideas will be appreciated.

If you have Date::Simple, this should start you off
==========================================
#!/usr/bin/perl

use Date::Simple (':all');
use strict;

my $date  = Date::Simple->new('1972-01-27');

print "$date\n";

for (my $i=1; $i <=10; $i++){
my $date = $date + $i;
print "$date\n";

}
 




 6 Posts in Topic:
Looping Dates.
sara.samsara@[EMAIL PROTE  2008-01-19 11:39:34 
Re: Looping Dates.
myklass@[EMAIL PROTECTED]  2008-01-19 08:05:14 
RE: Looping Dates.
captduck@[EMAIL PROTECTED  2008-01-19 02:19:27 
Re: Looping Dates.
rcook@[EMAIL PROTECTED]   2008-01-19 18:58:44 
Re: Looping Dates.
noreply@[EMAIL PROTECTED]  2008-01-19 09:22:26 
Re: Looping Dates.
Justin.Warwick@[EMAIL PRO  2008-01-25 10:57:20 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat Nov 22 10:33:06 CST 2008.