in reply to Re^4: Getting data from a file (Operons and Genes).
in thread Getting data from a file (Operons and Genes).
If tabs are the actual delimiter, then use this line instead:
my @fields = split(/\t/, $_);
The initial goal is to split each line of data into four separate fields.
|
|---|