Thread regex mit 2 Variablen (7 answers)
Opened by Gast at 2008-12-12 18:54

pq
 2008-12-12 19:16
#117134 #117134
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
hm, funktioniert doch:
Code: (dl )
1
2
3
4
5
6
7
$ perl -wle'
my $file = "movie.avi";
my $fileformat = ".avi";
if ($file =~ m/($fileformat)/) {
print "match";
}'
match

du solltest aber den punkt mit einem backslash escapen, der punkt an sich steht für "alles ausser newline".
Code: (dl )
1
2
3
4
5
6
7
$ perl -wle'
my $file = "movie.avi";
my $fileformat = "\\.avi";
if ($file =~ m/($fileformat)/) {
print "match";
}'
match
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 regex mit 2 Variablen