in reply to Re: handling tab delimited files
in thread handling tab delimited files
This is what printing $val gives 111111111111open FILE, "96well2.txt" or die $!; while (<FILE>){ chomp $_; @values = split('\t', $_); $val = @values; print $val; } close (FILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: handling tab delimited files
by almut (Canon) on May 05, 2010 at 17:21 UTC | |
by shaludr (Initiate) on May 05, 2010 at 17:40 UTC | |
by almut (Canon) on May 05, 2010 at 17:47 UTC | |
by shaludr (Initiate) on May 05, 2010 at 20:41 UTC | |
by almut (Canon) on May 05, 2010 at 21:01 UTC | |
| |
by toolic (Bishop) on May 05, 2010 at 20:52 UTC | |
by shaludr (Initiate) on May 05, 2010 at 17:53 UTC | |
by graff (Chancellor) on May 06, 2010 at 06:49 UTC |