Thread if-anweisung kompakter schreiben !!! (10 answers)
Opened by Gast at 2007-11-03 14:22

mr-sansibar
 2007-11-03 14:23
#101741 #101741
User since
2006-04-13
90 Artikel
BenutzerIn
[default_avatar]
gibt eine möglichkeit dieses anweisung kompakter zu schreiben ?

Code (perl): (dl )
if( ($line =~ /^Context/) && ($logFile =~ /webapp/ || $logFile =~ /^logfile/ || $logFile =~ /^inoutput/)){


ist dieser regex-ausdrück richtig ?

Code (perl): (dl )
1
2
3
if ($line=~(^Context|webapp|^logfile|^inoutput)) {
mach was
}

View full thread if-anweisung kompakter schreiben !!!