in reply to Re^2: ignore duplicates and show unique values between 2 text files
in thread ignore duplicates and show unique values between 2 text files
Breaking the two columns apart can easily be achieved with code like my @terms = split /\t/, $line;. See split.
#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: ignore duplicates and show unique values between 2 text files
by Laurent_R (Canon) on Apr 29, 2013 at 17:35 UTC |