- 论坛徽章:
- 0
|
新手来试试
#!/usr/bin/perl
$src='e:\perl\src1.txt';
open OPF ,$src or die "cant open ";
$opkey=0;
while (<OPF>){
if(/^$/) {next};
if ($opkey==0){
$first=$_;
chomp $_;
/(\w\d+)\ +(\d+)\ +(\w+)\ +(\d+)\ +(\d+)/;
$a=$3;
$opkey++;
}
elsif ($opkey==1){
$second=$_;
chomp $_;
/(\w\d+)\ +(\d+)\ +(\w+)\ +(\d+)\ +(\d+)/;
$b=$3;
$leng=length $b;
@aa=(split //,$a);
@bb=(split //,$b);
for ($i=0;$i<$leng;$i++){
$sfta=shift @aa;
$sftb=shift @bb;
if ($sfta eq $sftb){$sum +=1;}
}
$percent=$sum/$leng;
if($percent <=0.6){
open GO,">>","d:\\proj1\\1.txt";
print GO $first;
print GO $second;
}
if(($percent<=0.9)&&($percent>=0.6)){
open GO,">>","d:\\proj1\\2.txt";
print GO $first;
print GO $second;
}
if($percent >=0.9){
open GO,">>","d:\\proj1\\3.txt";
print GO $first;
print GO $second;
}
$opkey=0;
}
$sum=0;
} |
|