Help for this page

Select Code to Download


  1. or download this
    my $fixed = $ptext;
    $fixed =~ s/^['"]//;
    $fixed =~ s/['"]\z//;
    $fixed = quotemeta($fixed);
    
  2. or download this
    my $fixed = $ptext;
    $fixed =~ s/^['"]//;
    $fixed =~ s/['"]\z//;
    $fixed =~ s/([\\'"...])/\\$1/g;