in reply to Parsing oddball dates

Look on CPAN for Date::Manip.

use Date::Manip; my $string = '5/27/2004' # Just about any imaginable format. my $date = ParseDate( $string );

With the above snippet, $date will contain a standardized date format. This module is great.


Dave