- 论坛徽章:
- 0
|
我想将一行很长的字符串按每行一定个数输出,于是想到了format格式输出,我写的代码如下。
#在文件中查询,并输出
my $first;
my $second;
open (READIN, "/var/www/ibi/phylogenedb/download/$last.txt") or die "Cannot read $last: $!";
open (WRITEOUT,">/var/www/ibi/phylogenedb/download/sequence.fasta") or die "Cannot read $last: $!";
#while (<READIN>){
# print $_;
#}
select WRITEOUT;
$~="WRITEOUT"
write;
while (chomp($first=<READIN>),chomp($second=<READIN>)){
$_ = $first;
if (/]$match.$last/){
format WRITEOUT=
~~^<<<<<<<<<<<<<<<<<<<<<<<<
$second;
.
}
}
select STDOUT;
close (READIN);
close (WRITEOUT);
}
但是运行的时候并不会成功输出,错误提示为
Format not terminated at seq_screen.cgi line 60, at end of line
syntax error at seq_screen.cgi line 60, at EOF
Execution of seq_screen.cgi aborted due to compilation errors.
求解为什么? |
|