Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    print "(unescaped) path = $path\n";
    ($path = $str) =~ s{\Q$name\E}{};
    print "(escaped) path = $path\n";
    
  2. or download this
     str = /path/to/f(il)e
    name = f(il)e
    (unescaped) path = /path/to/f(il)e
    (escaped) path = /path/to/