Considering the following: @temp = split(/\t/, $row); $piid = $temp[0];
Is it possible to cut this down to one line, similar to the following Python code? piid = row.split('\t')[0] Thank you, Shawn -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/