in reply to Re: From Array 2 string
in thread From Array 2 string

That's a very strange example for join you've got going there. I'd guess the OP is just after...
my @arr = qw(a b c d e f g h); my $str = join('', @arr);
Am I missing something?
---
my name's not Keith, and I'm not reasonable.