in reply to Joining an array with two tabs
my @array = ("first","second","third"); my $output = join( "\t\t", @array ); print( $output );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Joining an array with two tabs
by rev_1318 (Chaplain) on Jul 18, 2005 at 09:44 UTC | |
by cog (Parson) on Jul 18, 2005 at 09:48 UTC |