in reply to Can I Postmatch an array element?
You can use map to solve that problem:
my @lines = map /:\s*(.+)/, @array; [download]