print FILEHANDLE LIST print LIST |
打印表达式中列表值到当前默认的输出文件句柄,或到一个指定的文件句柄。
如果设置,则将$\变量添加到列表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