perl中如何将数组中元素转化成一个字符串

最好给个简单的实例就行
2025-04-19 23:09:57
推荐回答(1个)
回答1:

@a = ('P','e','r','l');
$s = join('',@a);
print $s;