Help for this page

Select Code to Download


  1. or download this
    foreach my $line (@lines) {
     next if $line =~ /^QKC_/;
     #do something with $line
    }
    
  2. or download this
    @subset = grep(/^QKC_/, @lines);