Leser: 17
1 2 3 4
for my $file ( qw(test.jpg hallo.html welt.bmp) ) { print "Ja: $file\n" if $file !~ /\.bmp\z/; print "Ja(2): $file\n" if $file =~ /.*\.(?!bmp)\z/; }
1 2 3 4 5 6 7 8 9 10
test_ob_bmp("http://example.org/blah/blubb/TieFF.tiff"); test_ob_bmp("http://example.org/blah/blubb/BumP.bmp"); test_ob_bmp("http://example.org/blah/blubb/teggsd.txt"); sub test_ob_bmp { my $url = shift; if ($url !~ /\.bmp$/i) { # wenn kein Match auf bmp am Ende print "$url ist kein .bmp", "\n"; } }
1 2 3 4 5 6 7 8
test_ob_bmp("http://example.org/blah/"); sub test_ob_bmp { my $url = shift; if ($url !~ /\.bmp$/i) { # wenn kein Match auf bmp am Ende print "$url ist kein .bmp", "\n"; } }
if ($url !~ /\.bmp$/i) {
unless ($url =~ /\.bmp$/i) {