Thread Suche mit Perl, bestimmte Endung ausschließen
(5 answers)
Opened by lakul at 2011-03-14 11:34
Villeicht hilft Dir das hier als "Arbeitsgrundlage":
Code (perl): (dl
)
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/; } OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |