Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
binファイルから文字列を読み取りたい(文字列は固定オフセットから始まり、nullで終了します)。
Perlスクリプトでこれを行うにはどうすればよいですか?
seek必要に応じて正しい位置に移動し、次を使用します。
seek
my $str; { local $/ = "\0"; $str = <$fh>; } die "Premature EOF" if !defined($str) || $str !~ /\0\z/; chop($str);