Hi everyone,
I have read in a tab-delimited file, and split each line by @line_split= split(/\t/,$line). To detect fields with empty strings I use
if (($line_split[0] eq "") {...}. From this I always get the "use of uninitialized value" warning. I´m not sure if this is a problem, but at least it spoils the output.. What am I doing wrong / how can I avoid that?
Cheers,
Michael