你说有数字 1-5,但据我所知,这与你想要的输出无关。您只使用在输出中的文件中找到的数字。此代码将执行您想要的操作:
use strict;
use warnings;
use feature 'say';
my @hashes;
my %seen;
local $/; # read entire file at once
while (<>) {
my @nums = split; # split file into elements
$seen{$_}++ for @nums; # dedupe elements
push @hashes, { map { $_ => $_ } @nums }; # map into hash
}
my @all = sort { $a <=> $b } keys %seen; # sort deduped elements
# my @all = 1 .. 5; # OR: provide hard-coded list
for my $num (@all) { # for all unique numbers
my @fields;
for my $href (@hashes) { # check each hash
push @fields, $href->{$num} // "NA"; # enter "NA" if not found
}
say join "\t", @fields; # print the fields
}
您可以将排序的重复数据删除列表替换为@all
仅my @all = 1 .. 5
或任何其他有效列表。然后它将为这些数字添加行,并为缺失值打印额外的“NA”字段。
您还应该知道,这取决于您的文件内容是数字这一事实,但仅限于@all
数组的排序,因此如果您将其替换为您自己的列表或您自己的排序例程,您可以使用任何值。
该脚本将获取任意数量的文件并对其进行处理。例如:
$ perl script.pl f1.txt f2.txt f3.txt
1 NA 1
3 3 NA
NA 4 NA
5 NA 5
感谢Brent Stewart弄清了 OP 的含义。