in reply to handling tab delimited files
Maybe the file isn't tab delimited, as you think it is. In this case, the split wouldn't work, and $val (in the multiplication) would be entire line...
To debug such issues yourself, just print out the value(s) in question, in this case $val.
Also, the line $val = @values; doesn't make any sense here — it's superfluous.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: handling tab delimited files
by shaludr (Initiate) on May 05, 2010 at 17:00 UTC | |
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 shaludr (Initiate) on May 05, 2010 at 17:53 UTC | |
by graff (Chancellor) on May 06, 2010 at 06:49 UTC |