Perl tell 函数



描述

此函数返回指定的 FILEHANDLE 中读取指针的当前位置(以字节为单位)。如果省略 FILEHANDLE,则返回上次访问的文件中的位置。

语法

以下是此函数的简单语法 -

tell FILEHANDLE

tell

返回值

此函数返回当前文件的位置(以字节为单位)。

示例

以下示例代码展示了其基本用法,要检查此函数,请执行以下操作 -

  • 创建一个文本文件,内容为“this is test”,并将其存储在 /tmp 目录中。

  • 从此文件中读取 2 个字符。

  • 现在检查文件中读取指针的位置。

#!/usr/bin/perl -w

open( FILE, "</tmp/test.txt" ) || die "Enable to open test file";
$char = getc( FILE );
print "First Character is $char\n";
$char = getc( FILE );
print "Second Character is $char\n";
# Now check the position of read pointer.
$position = tell( FILE );
print "Position with in file $position\n";
close(FILE);

执行以上代码后,将产生以下结果 -

First Character is E
Second Character is O
Position with in file 2
perl_function_references.htm
广告