标签: perl binary
我想从bin文件中读取一个字符串(字符串从固定偏移量开始,并且以空值终止)。
如何在Perl脚本中执行此操作?
答案 0 :(得分:5)
seek到正确的位置,然后使用:
seek
my $str; { local $/ = "\0"; $str = <$fh>; } die "Premature EOF" if !defined($str) || $str !~ /\0\z/; chop($str);