in reply to Re: Feedback Appreciated on text-parsing, SQL querying subroutine
in thread Feedback Appreciated on text-parsing, SQL querying subroutine

The above code can be written as my ( $did1,$did2,$score1,$score2 ) = (split("\t", $_))[0..3];
As a curiousity, how come you are subscripting split? Split returns a list, so he should be safe with just...
my ($did1, $did2, $score1, $score2) = split("\t", $_);
Right?

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.