# clear and self documenting ( undef, undef, $user, $pass, $domain ) = split; if ( $user eq 'foo' and $pass eq 'bar' ) { } # obfuscated, requires looking at data to understand @fields = split; if ( $field[2] eq 'foo' and $field[3] eq 'bar' ) { }