I'm trying to read in an array every first String (Id-number) per line out of tab-delimited text-files.
I only know how to read in complete lines per:
...
chomp ($filename1 = <STDIN>);
open(FILE1, $filename1);
@input1 = <FILE1>;
Jane
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]