Thread Auswertung einer if Bedingung
(10 answers)
Opened by oes at 2008-03-05 00:00
Dann musst Du getrennte Bedingungen machen:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 my $file_name; if ( -e "1.txt"){ $file_name=$_; } elsif( -e "2.txt" ){ $file_name = $_; } if( $file_name ){ $fh = IO::File "<$file_name" or die $! } Aber eigentlich ist es ja egal, weil $file_name in beiden Fällen auf $_ gesetzt wird. Da wird also nicht berücksichtigt, welche Bedingung erfüllt ist... 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/ |