in reply to Use perl to do direction matching
So use something along these lines:
while (my $line = <TEMP>) { my $A; my @column = split (/,/,$line); ... }
But $A is a horrible name for a variable, consider picking a better one.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Use perl to do direction matching
by hujunsimon (Sexton) on Oct 09, 2009 at 15:18 UTC | |
by moritz (Cardinal) on Oct 09, 2009 at 15:36 UTC |