Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: get difference of two arrays

by RMGir (Prior)
on Nov 14, 2013 at 12:52 UTC ( [id://1062570]=note: print w/replies, xml ) Need Help??


in reply to get difference of two arrays

Apart from a few typos, the only problem I see is that you're putting an array ref into @output instead of the array elements (i.e., lose the square brackets).

Here's my version, and it seems to work fine:

#!/usr/bin/perl -w use strict; use warnings; use Data::Dumper; #kaks üheveerulist faili, prindib need veerud mis ühes on aga teises p +ole #ehk siis suurem fail miinus väiksem my $num_args = $#ARGV + 1; if ($num_args != 3) { print "\nUsage: ./lahutaja suurem väiksem vahe(output)\n"; exit; } my $f=$ARGV[0]; my $qa=$ARGV[1]; my $out=$ARGV[2]; open FA, "< $f"or die "Can't open $f: $!"; open QA, "< $qa" or die "Can't open $qa: $!"; open OUT,"> $out" or die "Can't open $out: $!"; my @bl = <QA>; my @a = <FA>; my %h; @h{@bl} = @bl; my @output=grep {!exists $h{$_}} @a; print "\@bl: [ @bl ]\n"; print "\@a: [ @a ]\n"; print "\@output:[ @output ]\n"; print OUT @output; close FA; close QA; close OUT;

Mike

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1062570]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-26 07:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found