描述
此函数将 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。