Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: limits

by jreades (Friar)
on Nov 28, 2002 at 10:45 UTC ( [id://216276]=note: print w/replies, xml ) Need Help??


in reply to limits

Uh, you could use the numerical comparison... why are you using the ASCII comparison?

I think that there are some conceptual problems here that the following code might help:

my @number = (); for (my $i = 0; $i < @column_1; $i++) { if (($column_1[$i] >= 8 && $column_1[$i] <= 52) && ($column_2[$i] >= 98 && $column_2[$i] <= 202)) { push @number, join(' ', $column_1[$i], $column_2[$i]); } } foreach (@number) { print $_ . "\n"; }

If you're looking for something more subtle where the fuzziness of the match is unclear then you'd have to improve this approach substantially.

HTH

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-04-18 13:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found