in reply to IF and some conditions
$test = 7; @array = qw(3 5 7); foreach ( @array ){ print $test == $_ ? 'OK':undef;} [download]