Help for this page

Select Code to Download


  1. or download this
    my @sorted_keys =
        map substr($_, 10),
    ...
        map sprintf('%02d%02d%5$s%02d%02d',
            m{(\d+)/(\d+) \@ (\d+):(\d+) (AM|PM)}) . $_
        keys(%line_data);
    
  2. or download this
    my @sorted_keys =
        map substr($_, 10),
    ...
            sprintf('%02d%02d%s%02d%02d%s', $m,$d,$ampm,$H,$M, $_)
        }
        keys(%line_data);