Help for this page

Select Code to Download


  1. or download this
    my @grepnames = grep {/"ER"/} @test2;
    
  2. or download this
    my @grepnames;
    for my $test2item (@test2) {
        push @grepnames,$test2item if $test2item =~ /"ER"/;
    }