欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

perl跳过首行读取文件的实现代码

程序员文章站 2022-12-31 14:09:48
复制代码 代码如下:#!/usr/bin/perlopen( read, "<$file" );readline read; # skip the first lin...

复制代码 代码如下:

#!/usr/bin/perl
open( read, "<$file" );
readline read; # skip the first line
while (<read>) {
my ( $id, $axis1, $axis2, $axis3, $value ) = split / /;
$line = sprintf ( "%d %d %d %d %d %d",
$id, $axis1, $axis2, $axis3, $value, $axis1 + $axis2 );
print write $line;
}
close read;

这里说说我自己的想法,挺笨的:
直接定义标量变量运行一遍: my $skipfirst = <fh>; 感觉这样也好,但是如果需要同时处理多个文件,每个都需要跳过首行,每个都需要定义一个变量,觉得太浪费了,readline正好帮了俺的大忙了。