Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: comparing

by gav^ (Curate)
on Jul 22, 2002 at 04:49 UTC ( [id://183944]=note: print w/replies, xml ) Need Help??


in reply to comparing

I'm not sure what on earth you're doing in your code, you have 2 loops using $_ and you pull a magic $fileTowValue out of thin air.

Here is something that works:

my @file1 = qw(22-28 36 44-49 234 77 26); my @file2 = qw(23 11 21 44 233 26); my %wanted = (); foreach my $num (@file1) { if ($num =~ /^(\d+)-(\d+)$/) { $wanted{$_}++ for $1 .. $2; } else { $wanted{$num}++; } } foreach (@file2) { print $_, "\n" if $wanted{$_}; } __END__ Output: 23 44 26

gav^

Replies are listed 'Best First'.
Re: Re: comparing
by DS (Acolyte) on Jul 22, 2002 at 13:45 UTC
    thanks :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-19 10:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found