 | Calendar::List
calendar_list
my $hash = calendar_list('DD-MM-YYYY', 'DDEXT MONTH YYYY', \%options01);
|
Would yield:
$hash= { '03-05-2003' => '3rd May 2003' '04-05-2003' => '4th May 2003', '10-05-2003' => '10th May 2003', '11-05-2003' => '11th May 2003', '17-05-2003' => '17th May 2003', '18-05-2003' => '18th May 2003', '24-05-2003' => '24th May 2003', '25-05-2003' => '25th May 2003', '31-05-2003' => '31st May 2003', '01-06-2003' => '1st June 2003', '07-06-2003' => '7th June 2003', };
|
|