in reply to comparing 2 columns
You never actually separate your columns. If a parsing module is heavier-weight than you want, you probably want to do a split on commas
my @fields = split /,/, $line;
#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.
|
|---|