Thread $ARGV[0] in @array überprüfen (28 answers)
Opened by Duff at 2007-10-18 18:20

renee
 2007-10-19 10:57
#101074 #101074
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code (perl): (dl )
1
2
3
4
5
6
unless( grep $ARGV[0] eq $_, @arr ){
    print "nicht enthalten\n";
}
else{
    print "enthalten\n";
}


oder

Code (perl): (dl )
print !(grep $ARGV[0] eq $_, @arr) ? 'JAAAA' : 'och nee :(';


oder was meintest Du?
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 $ARGV[0] in @array überprüfen