join EXPR, LIST |
使用expr的值來分隔每一個元素的元素的列表結合成一個字符串。這是有效的相反地分割。請注意,EXPR 隻對元素的列表之間的插值; 它不會被置於前或後的最後一個元素的字符串。聯合起來不帶分隔符的字符串,而不是 undef 提供一個空字符串。
加入字符串
試一試以下例子:
#!/usr/bin/perl
#by www.gitbook.net
$string = join( "-", "one", "two", "three" );
print"Joined String is $string\n";
$string = join( "", "one", "two", "three" );
print"Joined String is $string\n";
It produces following result
Joined String is one-two-three
Joined String is onetwothree