Thread RegExp: Slash an Pfad anfängen, ...: ... falls nicht vorhanden (14 answers)
Opened by Lightman at 2007-02-19 21:28

pq
 2007-02-20 00:40
#74406 #74406
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
[quote=Lightman,19.02.2007, 20:49]@pq: Nein, es geht nur um ein kleines Modul, welches eine Datei einlesen soll. Dafür wird ein Pfad und ein Dateiname übergeben.[/quote]
ähm, genau dafür kannst du File::Spec benutzen.
Code: (dl )
1
2
3
4
5
$ perl -wle'use File::Spec;
print File::Spec->catfile("/foo/", "bar");
print File::Spec->catfile("/foo", "bar");'
/foo/bar
/foo/bar

funktioniert dann auch gleich auf allen betriebssystemen. und
das modul ist ein core-modul.\n\n

<!--EDIT|pq|1171924930-->
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread RegExp: Slash an Pfad anfängen, ...: ... falls nicht vorhanden