- 论坛徽章:
- 0
|
回复 1楼 stobyxu 的帖子
Tips:
1. using chomp to remove "\n" when read data from file.
2. read file and put it in an array
3. process different array, compare with them and put new records in new array,
finally write new array into a new file.
P.S.: there is many methods to compare two differnet dada, In your case, using
hash is one of them. For example:
@a = ('aaa 1', 'bbb 2');
@b = ('123 aaa', '456 bbb', '090 foo');
%h_a = map {($k, $v)=split /\s+/; $k=>$v} @a;
%h_b = map {($i, $k)=split /\s+/; $k=>$v} @b;
@c = ();
foreach my $k (keys %h_b) {
print "$k => $h_b{$k}\n";
if ( exists $h_a{$k} ) {
push @c, "$k $h_b{$k}";
}
}
print join "\n", @c;
Best, ulmer
[ 本帖最后由 ulmer 于 2006-4-4 22:06 编辑 ] |
|