Try this for the regex. It works with the test data provided.
my @matches = ( $str =~ m/\|?Link:([\s0-9-]+)/g ); [download]
In reply to Re^2: Perl Regex by swl in thread Perl Regex by audioboxer