Help for this page

Select Code to Download


  1. or download this
         if($_ =~ m/^(\Q$constant\E)/) {
           $line_count++;
         }
    
  2. or download this
    my $searchterm = quotemeta $user_input;
    
  3. or download this
         while ($_ =~ m/\Q$constant\E/gc) {
           $count++; 
         }