in reply to
put a array value into string.
you can still use
join
with
null
delimiter.
join("", @arr1);
or you may refer to specific array index.
$str1 = $arr1[0];
Comment on
Re: put a array value into string.
In Section
Seekers of Perl Wisdom