Help for this page

Select Code to Download


  1. or download this
    my %month_key_lookup = (
        'Jan' => 'a',
    ...
        map { /^(.{3}) (\d?)(. .*)/s;
              $month_key_lookup{$1}.($2||'0').$3.$_ }
        @dates;