http://qs321.pair.com?node_id=1000082

lostcoder has asked for the wisdom of the Perl Monks concerning the following question:

I want to take the following code, which works... and use a wild card to represent all REMOTE_ADDR that have 180.76.6 at the start of the IP.
$seeyahlater = '180.76.6.175'; if ($ENV{REMOTE_ADDR} eq '180.76.6.175') { $buffer = $seeyahlater; {exit}; }
Any suggestions