Help for this page

Select Code to Download


  1. or download this
      while (my $text=<$testo>){
        for my $key (keys %hash){
    ...
          print $conteggio "$arrkey) => $count\n";
        } ;
      } ;
    
  2. or download this
      my $count = () = $text =~ /\b$key\b/ig ;
    
  3. or download this
      my $count = 0 ; while ($text =~ /\b$key\b/ig) { $count++ ; } ;