in reply to From Array 2 string
Hi jeanluca, Try this,
use strict; my @arr = qw(a b c d e f g h); my $str; $str .= shift(@arr) until (!(@arr)); print $str;
Using Join :
$str = join '', @arr;
Regards,
Velusamy R.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: From Array 2 string
by reasonablekeith (Deacon) on Nov 15, 2005 at 11:37 UTC |