首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

perl读写资料

2012-12-18 
perl读写文件#!/usr/bin/perlmy $SRC_FILE/home/lgg/t.txtmy $DEST_FILE/home/lgg/dest.txtif (op

perl读写文件
#!/usr/bin/perl
my $SRC_FILE="/home/lgg/t.txt";
my $DEST_FILE="/home/lgg/dest.txt";
if (open (SRCFILE ,"<$SRC_FILE"))
{
   open (DESTFILE ,">$DEST_FILE");
   my @reads = <SRCFILE>;
   my $count=$#reads;
   my $curr_index= 0;
   while($curr_index <=$count)
   {
     my $line = $reads[$curr_index];
$line=~s/^\s+|\s+$//g;
if ( nil ne $line && "" ne $line)

print DESTFILE "$line\n";
     }
$curr_index++;
   }
   close DESTFILE;
   close SRCFILE;
}
else
{
   print "Source file $SRC_FILE not found!\n";
}

热点排行