in reply to Regular Exp parsing

Since your data is delimited by spaces, you can really simplify this using split:
chop($date_string); # Remove colon my @date = split(' ', $date_string);
Now $date[0] is 'Fri', $date[1] is 'Nov' and so forth. If you're weary of using chop, you can always use substr instead.