Help for this page

Select Code to Download


  1. or download this
    my $perl_path = '/foo/bar/baz';
    (my $win_path = $perl_path) =~ tr!/!\\!;
    print "Perl still sees:  $perl_path\n";
    print "But we can print: $win_path\n";
    
  2. or download this
    my $perl_path = '/foo/bar/baz';
    print "This is the Windows path: ", win_path($perl_path), "\n";
    
    ...
        (my $path = shift) =~ tr!/!\\!;
      return $path;
    }