平时做技术实践时,很多问题不是概念不会,而是细节没串起来。拿“perl去除重复内容的脚本代码(重复行+数组重复字段)”来说,它看着像小点,放到项目里常会牵出环境、配置、兼容性和维护成本。下面按实际采用顺序,把思路、关键写法和容易踩坑的地方讲清楚,便于大家直接对照操作。
假如有这样的一段序列:
1 2
1 2
2 1
1 3
1 4
1 5
4 1
我们需得到如下所示的结果:
1 3
1 5
2 1
4 1
那么,请借助以下的perl脚本来实现。
代码一:
my %hash;
my $script = $0; # Get the script name
sub usage
{
printf("Usage:n");
printf("perl $script <source_file> <dest_file>n");
}
# If the number of parameters less than 2 ,exit the script
if ( $#ARGV+1 < 2) {
&usage;
exit 0;
}
my $source_file = $ARGV[0]; #File need to remove duplicate rows
my $dest_file = $ARGV[1]; # File after remove duplicates rows
open (FILE,"<$source_file") or die "Cannot open file $!n";
open (SORTED,">$dest_file") or die "Cannot open file $!n";
while(defined (my $line = <FILE>))
{
chomp($line);
$hash{$line} += 1;
# print "$line,$hash{$line}n";
}
foreach my $k (keys %hash) {
print SORTED "$k,$hash{$k}n";#改行打印出列和该列出现的次数到目标文件
}
close (FILE);
close (SORTED);
代码三:
借助perl脚本,删除数据组中重复的字段