Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Paths in Perl

by tachyon (Chancellor)
on Sep 04, 2001 at 17:43 UTC ( [id://110030]=perltutorial: print w/replies, xml ) Need Help??

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;
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perltutorial [id://110030]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-24 17:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found