Help for this page

Select Code to Download


  1. or download this
    my @array = qw(foo bar food foofighters kung-foo);
    my $count_foo = grep (/foo/, @array);
    print "$count_foo\n";
    
  2. or download this
    my $count_foo = grep { $_ eq 'foo' } @array;