join

 

書式
join(EXPR,LIST);

機能
LISTを連結文字EXPRで結合する。

戻り値
連結後の文字列。

 

使用例

my @temp = ('abc','def','g');
my $str = '';
$str = join('',@temp);