描述
此函數將 LIST 中表達式的值打印到當前默認輸出文件句柄,或打印到 FILEHANDLE 指定的文件句柄。
如果設置,$\ 變量將被添加到 LIST 的末尾。
如果 LIST 為空,則打印 $_ 中的值。
print 接受一個值列表,列表中的每個元素都將被解釋為一個表達式。
用法
以下是此函數的簡單語法 -
print FILEHANDLE LIST print LIST print
返回值
此函數在失敗時返回 0,成功時返回 1。
示例
以下是顯示其基本用法的示例代碼 -
#!/usr/bin/perl -w
$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
相關用法
- Perl printf用法及代碼示例
- Perl print() and say()用法及代碼示例
- Perl prototype用法及代碼示例
- Perl prototype()用法及代碼示例
- Perl push()用法及代碼示例
- Perl pipe用法及代碼示例
- Perl pack用法及代碼示例
- Perl push用法及代碼示例
- Perl pos用法及代碼示例
- Perl pop用法及代碼示例
- Perl sin()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl kill用法及代碼示例
- Perl chop()用法及代碼示例
- Perl wantarray用法及代碼示例
- Perl gmtime用法及代碼示例
- Perl exists()用法及代碼示例
- Perl split用法及代碼示例
注:本文由純淨天空篩選整理自 Perl print Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。