Help for this page

Select Code to Download


  1. or download this
      for $count (0..52) {
        my $pattern = quotemeta($array1{$count});
        $sometext =~ s/$pattern/$array2{$count}/g;
      }
    
  2. or download this
      for $count (0..52) {
       $sometext =~ s/\Q$array1{$count}/$array2{$count}/g;
      }