Help for this page

Select Code to Download


  1. or download this
    foreach $pid (@pids) {
       my $result;
    ...
       $result = $1;
       push (@pidCans, $result);
    }
    
  2. or download this
    foreach $pid (@pids) {
       $pid =~ /\|(.*)$/;
       push @pidCans, "$1";
    }