in reply to Tab delimited code problem?
Also, when you have multiple scalars named something like $foo1, $foo2, $foo3, etc, that is usually a sign that you want an array. Something like:
@values = split /\t/, $line, -1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Tab delimited code problem?
by Aristotle (Chancellor) on Jan 25, 2003 at 23:40 UTC |