in reply to Reading unicode characters from file
If the file only contains tab-separated data you can read it easily like this:
{ local $/ = "\t"; while (my $data_frag = <FH>) { # process $data_frag here } }
If you reformat the above, I'll look at the second part.
Regards,
PN5
|
|---|