in reply to match two files
my ( $first,$second) = split /t+/;
...
my ( $first,$second, $third ) = split /t+/ ;
No complete solution, but a quick tip: In the two quoted statements,
if you want to split $_ on multiple tabs, use /\t+/
(note the backslash).
my ( $first,$second) = split /\t+/;
Give a man a fish: <%-{-{-{-<
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: match two files
by yueli711 (Sexton) on Dec 09, 2020 at 06:24 UTC |