Help for this page

Select Code to Download


  1. or download this
    my $count = grep{ /$query/ } $_;
    
  2. or download this
    my $count = grep{ /\b$query\b/ } $_;
    
  3. or download this
    my $count = grep{ /\b$query\b/i } $_;