Help for this page

Select Code to Download


  1. or download this
    $repl = '\";`hacked`;\"';
    
  2. or download this
    sub munge_string {
        my ( $str, $pat, $repl ) = @_;
    ...
        $str =~ s/$pat/$repl/eeg;
      return $str;
    }