Help for this page

Select Code to Download


  1. or download this
           $source =~ s/$map{$key}/$key/g;
    
  2. or download this
           $source =~ s/\Q$map{$key}/$key/g;
    
  3. or download this
        for my $line (@source) {
            chomp $line;
    ...
            }
            print "$tmpline\n";
        }