Thread Suche mit Perl, bestimmte Endung ausschließen (5 answers)
Opened by lakul at 2011-03-14 11:34

renee
 2011-03-14 11:47
#146478 #146478
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
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/

View full thread Suche mit Perl, bestimmte Endung ausschließen