我是 Perl 的初学者。我有一个文件两列。我想将第一列(作为参考)与第二列(测试)进行比较:
pppqqrrsttqrstrr pppqrrrsttqrstrr
if p in ref =~ p in test print p
if q in ref =~ q in test print q
if r in ref =~ r in test print r
if s in ref =~ s in test print s
if t in ref =~ t in test print W
if q in ref =~ r in test print w
所以输出:pppqwrrsWWqrsWrr
我试过:
#!/usr/bin/perl
use warnings;
use strict;
open my $F1, '>', 'match' or die $!;
while(<>){
chomp($_);
my @file = split ("\t| ",$_);
my @ref = split (//, $file[0]);
my @test = split (//, $file[1]);
for my $i (0 .. @ref -1) {
if(($ref[$i] =~ /Pp/) && ($test[$i] =~ /Pp/)){
print $F1 ("$ref[$i]");
}
elsif(($ref[$i] =~ /Qq/) && ($test[$i] =~ /Qq/)){
print $F1 ("$ref[$i]");
}
elsif(($ref[$i] =~ /Rr/) && ($test[$i] =~ /Rr/)){
print $F1 ("$ref[$i]");
}
elsif(($ref[$i] =~ /Ss/) && ($test[$i] =~ /Ss/)){
print $F1 ("$ref[$i]");
}
elsif(($ref[$i] =~ /Tt/) && ($test[$i] =~ /Tt/)){
print $F1 ("W");
}
elsif(($ref[$i] =~ m/Qq/) && ($test[$i] =~ m/Rr/)){
print $F1 ("w");
}
$i++;
}print $F1 ("\n");}
close $F1;
但我什么都没有!
谢谢你