當前位置:首頁 » Perl » Perl join()函數

Perl join()函數

perl join()函數,join()函數學習例子,join()函數實例代碼,join()函數教學等

語法

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