Help for this page

Select Code to Download


  1. or download this
    $permutations_total++ while $string =~ $promoters_regex[$j];
    
  2. or download this
    $permutations_total++ while $string =~ /$promoters_regex[$j]/g;
    
  3. or download this
    {  no warnings 'numeric';
       $permutations_total += $string =~ /$promoters_regex[$j]/g;
    }