Help for this page

Select Code to Download


  1. or download this
    my $count_foo = scalar @fool;
    
  2. or download this
    my $count_foo = grep (/foo/, @array);
    
  3. or download this
    my @array = qw(foo bar food foofighters kung-foo);
    
  4. or download this
    my $count_foo = grep { $_ eq 'foo' } @array;