in reply to Parsing oddball dates
use Date::Manip; my $string = '5/27/2004' # Just about any imaginable format. my $date = ParseDate( $string ); [download]
With the above snippet, $date will contain a standardized date format. This module is great.
Dave