in reply to Print AOA into tab sep values
One way:
for $row ( @out ) { print join( "\t", @$row), "\n"; }
Another way:
$, = "\t"; # Output field separator for $row ( @out ) { print @$row, "\n"; }
Update: moritz is right, $" is better than $, ($, leaves a TAB bebore NEWLINE)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Print AOA into tab sep values
by ikegami (Patriarch) on Apr 14, 2008 at 11:29 UTC | |
by dvryaboy (Sexton) on Apr 15, 2008 at 13:10 UTC |