Code:
my %month = ( 'JAN' => 1, 'FEB' => 2, 'MAR' => 3, 'APR' => 4, 'MAY' => 5, 'JUN' => 6, 'JUL' => 7, 'AUG' => 8, 'SEP' => 9, 'OCT' => 10, 'NOV' => 11, 'DEC' => 12);
$col[5] = 'MAY052010';
($c{month}, $c{day}, $c{year}) = $col[5] =~ /(.{3})(\d{2})(\d{4})/;
$c{month} = $month{$c{month}} #or $month{$1}
print "$c{month}\n";
I'd really like to have that done in one line.. just seems like I'm missing something easy.
Thanks
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
![[noevil] [noevil] [noevil]](/data/assets/smilies/noevil.gif)
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;