Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: matching the contents of two (2) files

by dragonchild (Archbishop)
on Mar 10, 2005 at 19:18 UTC ( [id://438391]=note: print w/replies, xml ) Need Help??


in reply to matching the contents of two (2) files

First, what does doing this buy you that using diff doesn't? Use the right tool for the right job.

Second, You will want to use a hash, not an array. (I'm abbreviating here. Add the excellent fileopen stuff you're doing.)

chomp( my @first = <FIRST> ); chomp( my @last = <LAST> ); my %last_names; undef @last_names{ @last }; foreach my $name (@first ) { next if exists $last_names{ $name }; print "$name\n"; }

Being right, does not endow the right to be rude; politeness costs nothing.
Being unknowing, is not the same as being stupid.
Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.

Replies are listed 'Best First'.
Re^2: matching the contents of two (2) files
by Roy Johnson (Monsignor) on Mar 10, 2005 at 21:07 UTC
    If you're going to abbreviate, abbreviate :-)
    my %hash; @hash{<LAST>} = (); # Death to the undef trick! exists $hash{$_} or print while <FIRST>;

    Caution: Contents may have been coded under pressure.
      Let's see ... that's about 70 characters.
      #234567890#234567890#234567890#234567890 -p BEGIN{@x{+pop}=()}exists$x{$_}||next
      That's 39 characters. You have to run it as so from the command line.
      perl -p -e 'BEGIN{@x{+pop}=()}exists$x{$_}||next' FIRST.txt LAST.txt > + MISSING.txt

      This is really untested code, but it _should_ work. :-)

      Being right, does not endow the right to be rude; politeness costs nothing.
      Being unknowing, is not the same as being stupid.
      Expressing a contrary opinion, whether to the individual or the group, is more often a sign of deeper thought than of cantankerous belligerence.
      Do not mistake your goals as the only goals; your opinion as the only opinion; your confidence as correctness. Saying you know better is not the same as explaining you know better.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-16 18:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found