Help for this page

Select Code to Download


  1. or download this
    for(@array){
        ($i)= grep { m/^#/ } $_;
        push @new, $i;
    }
    
  2. or download this
    foreach my $line (@array) {
         next if ($line =~ /^#/);
         push @new, $line;
    }