當前位置:首頁 » Perl » Perl print 函數

Perl print 函數

perl print函數例子,print函數實例代碼 - 打印表達式中列表​值到當前默認的輸出文件句柄。

語法

print FILEHANDLE LIST

print LIST

print


定義和用法

  • 打印表達式中列表值到當前默認的輸出文件句柄,或到一個指定的文件句柄。

  • 如果設置,則將$\變量添加到列表LIST 的末尾

  • 如果列表LIST 是空的,$_的值將被打印代替。

  • 打印接受列表的值,列表中的每一個元素將被解釋為一個表達式。

返回值

  • 0 - 失敗

  • 1 - 成功

例子

試試以下的例子:

#!/usr/bin/perl -w
#by www.gitbook.net

$string = "That is test";
@list = (1,2,3,4,5,6,);
$index = index ($string, 'is');

print "Position of is in the string $index\n";
print "Print list @list\n";

這將輸出以下結果:

Position of is in the string 5
Print list 1 2 3 4 5 6